Oops, msync helper is broken.

geesefs-0-30-9
Aaron Jacobs 2015-03-24 13:00:18 +11:00
parent 331695907b
commit 2f5062ac6c
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ func dup2(oldfd int, newfd int) (err error) {
// Call msync(2) on a slice previously returned by mmap(2). // Call msync(2) on a slice previously returned by mmap(2).
func msync(p []byte) (err error) { func msync(p []byte) (err error) {
_, _, errno := unix.Syscall( _, _, errno := unix.Syscall(
unix.SYS_MMAP, unix.SYS_MSYNC,
uintptr(unsafe.Pointer(&p[0])), uintptr(unsafe.Pointer(&p[0])),
uintptr(len(p)), uintptr(len(p)),
0) 0)