2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 00:20:48 +00:00

x/sys/unix: Manually add FADV_* constants for Linux/arm

This commit is contained in:
Alexander Neumann 2016-08-21 14:59:15 +02:00
parent 69d8fe5b4f
commit 5061607e77

View File

@ -145,6 +145,15 @@ type Fsid struct {
X__val [2]int32
}
const (
FADV_NORMAL = 0x0
FADV_RANDOM = 0x1
FADV_SEQUENTIAL = 0x2
FADV_WILLNEED = 0x3
FADV_DONTNEED = 0x4
FADV_NOREUSE = 0x5
)
type Flock_t struct {
Type int16
Whence int16