diff options
Diffstat (limited to 'libgo/go/syscall/const_plan9.go')
-rw-r--r-- | libgo/go/syscall/const_plan9.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libgo/go/syscall/const_plan9.go b/libgo/go/syscall/const_plan9.go index ba26f123dea..063d5dfd7c2 100644 --- a/libgo/go/syscall/const_plan9.go +++ b/libgo/go/syscall/const_plan9.go @@ -12,6 +12,17 @@ const ( O_EXCL = 0x1000 ) +// Bind flags +const ( + MORDER = 0x0003 // mask for bits defining order of mounting + MREPL = 0x0000 // mount replaces object + MBEFORE = 0x0001 // mount goes before others in union directory + MAFTER = 0x0002 // mount goes after others in union directory + MCREATE = 0x0004 // permit creation in mounted directory + MCACHE = 0x0010 // cache some data + MMASK = 0x0017 // all bits on +) + // Rfork flags const ( RFNAMEG = 1 << 0 |