mirror of
https://github.com/rwinkhart/sys.git
synced 2026-08-27 20:36:31 -04:00
plan9: add mount and bind flags
Thanks Skip Tavakkolian. Fixes golang/go#14452. Change-Id: I0a4ef49edae61bb37f49b1071dd5c31e88ad6c04 Reviewed-on: https://go-review.googlesource.com/19729 Reviewed-by: Rob Pike <r@golang.org>
This commit is contained in:
@@ -57,3 +57,14 @@ const (
|
|||||||
ERRMAX = 128
|
ERRMAX = 128
|
||||||
STATFIXLEN = 49
|
STATFIXLEN = 49
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// Mount and bind flags
|
||||||
|
const (
|
||||||
|
MREPL = 0x0000
|
||||||
|
MBEFORE = 0x0001
|
||||||
|
MAFTER = 0x0002
|
||||||
|
MORDER = 0x0003
|
||||||
|
MCREATE = 0x0004
|
||||||
|
MCACHE = 0x0010
|
||||||
|
MMASK = 0x0017
|
||||||
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user