mirror of
https://github.com/containers/podman.git
synced 2025-10-17 03:04:21 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [go.etcd.io/bbolt](https://github.com/etcd-io/bbolt) from 1.3.6 to 1.3.7. - [Release notes](https://github.com/etcd-io/bbolt/releases) - [Commits](https://github.com/etcd-io/bbolt/compare/v1.3.6...v1.3.7) --- updated-dependencies: - dependency-name: go.etcd.io/bbolt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
260 B
Go
12 lines
260 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")
|
|
}
|