
This brings in some cri api changes for cgroups, Windows pod sandbox security context changes and some new fields for the Windows version of a privileged container. This also unfortunately bumps the prometheus client, grpc middleware, bolt and klog :( Signed-off-by: Daniel Canter <dcanter@microsoft.com>
12 lines
259 B
Go
12 lines
259 B
Go
package bbolt
|
|
|
|
// mlock locks memory of db file
|
|
func mlock(_ *DB, _ int) error {
|
|
panic("mlock is supported only on UNIX systems")
|
|
}
|
|
|
|
//munlock unlocks memory of db file
|
|
func munlock(_ *DB, _ int) error {
|
|
panic("munlock is supported only on UNIX systems")
|
|
}
|