mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-10 00:27:02 +02:00
15 lines
255 B
Go
15 lines
255 B
Go
// +build linux
|
|
|
|
package mlock
|
|
|
|
import "syscall"
|
|
|
|
func init() {
|
|
supported = true
|
|
}
|
|
|
|
func lockMemory() error {
|
|
// Mlockall prevents all current and future pages from being swapped out.
|
|
return syscall.Mlockall(syscall.MCL_CURRENT | syscall.MCL_FUTURE)
|
|
}
|