...

Source file src/go.etcd.io/bbolt/mlock_windows.go

Documentation: go.etcd.io/bbolt

     1  package bbolt
     2  
     3  // mlock locks memory of db file
     4  func mlock(_ *DB, _ int) error {
     5  	panic("mlock is supported only on UNIX systems")
     6  }
     7  
     8  // munlock unlocks memory of db file
     9  func munlock(_ *DB, _ int) error {
    10  	panic("munlock is supported only on UNIX systems")
    11  }
    12  

View as plain text