You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
488 B
Go
31 lines
488 B
Go
6 years ago
|
// +build !linux,!freebsd freebsd,!cgo
|
||
|
|
||
4 years ago
|
package mount
|
||
6 years ago
|
|
||
|
// These flags are unsupported.
|
||
|
const (
|
||
|
BIND = 0
|
||
|
DIRSYNC = 0
|
||
|
MANDLOCK = 0
|
||
|
NOATIME = 0
|
||
|
NODEV = 0
|
||
|
NODIRATIME = 0
|
||
|
NOEXEC = 0
|
||
|
NOSUID = 0
|
||
|
UNBINDABLE = 0
|
||
|
RUNBINDABLE = 0
|
||
|
PRIVATE = 0
|
||
|
RPRIVATE = 0
|
||
|
SHARED = 0
|
||
|
RSHARED = 0
|
||
|
SLAVE = 0
|
||
|
RSLAVE = 0
|
||
|
RBIND = 0
|
||
|
RELATIME = 0
|
||
|
REMOUNT = 0
|
||
|
STRICTATIME = 0
|
||
|
SYNCHRONOUS = 0
|
||
|
RDONLY = 0
|
||
|
mntDetach = 0
|
||
|
)
|