File: mlock_windows.go

package info (click to toggle)
golang-github-coreos-bbolt 1.3.10-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 912 kB
  • sloc: makefile: 54; sh: 7
file content (11 lines) | stat: -rw-r--r-- 260 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
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")
}