Files
rkt/pkg/sys/sys_linux_386.go
Simone Gotti 6e3989f59a sys: add linux syncfs syscall.
As syncfs is neither provided by golang syscall package nor by
golang.org/x/sys/unix adds a local syncfs syscall implementation. By now the
syscall numbers for linux amd64, 386 and arm architectures are provided.
2015-04-15 10:36:54 +02:00

6 lines
41 B
Go

package sys
const (
SYS_SYNCFS = 344
)