1
0
Fork 0
mirror of https://github.com/mjl-/mox.git synced 2025-01-16 02:16:26 +03:00
mox/vendor/go.etcd.io/bbolt/mlock_windows.go
Mechiel Lukkien cb229cb6cf
mox!
2023-01-30 14:27:06 +01:00

11 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")
}