4a886a3e8f
Please refer to link below to get more detailed info on bbolt@v1.3.7, - https://github.com/etcd-io/bbolt/blob/master/CHANGELOG/CHANGELOG-1.3.md#v1372023-01-31 Signed-off-by: Benjamin Wang <wachao@vmware.com>
11 lines
260 B
Go
11 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")
|
|
}
|