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:
David du Colombier
2016-02-22 17:57:57 +01:00
parent 50c6bc5e42
commit 5eaf0df67e

View File

@@ -57,3 +57,14 @@ const (
ERRMAX = 128
STATFIXLEN = 49
)
// Mount and bind flags
const (
MREPL = 0x0000
MBEFORE = 0x0001
MAFTER = 0x0002
MORDER = 0x0003
MCREATE = 0x0004
MCACHE = 0x0010
MMASK = 0x0017
)