Documentation
¶
Overview ¶
Package vaultsys implements handle-relative operations used by offline vaults.
Index ¶
- Constants
- func Flock(fd, flags int) error
- func Fstat(fd int, st *Stat_t) error
- func Fstatat(fd int, name string, st *Stat_t, flags int) error
- func Mkdirat(fd int, name string, mode uint32) error
- func Openat(fd int, name string, flags int, mode uint32) (int, error)
- func SyncFile(file *os.File) error
- func SyncKeyFile(file *os.File) error
- func Unlinkat(fd int, name string, flags int) error
- type Stat_t
Constants ¶
View Source
const ( O_RDONLY = unix.O_RDONLY O_WRONLY = unix.O_WRONLY O_RDWR = unix.O_RDWR O_CREAT = unix.O_CREAT O_EXCL = unix.O_EXCL O_CLOEXEC = unix.O_CLOEXEC O_DIRECTORY = unix.O_DIRECTORY O_NOFOLLOW = unix.O_NOFOLLOW O_NONBLOCK = unix.O_NONBLOCK S_IFREG = unix.S_IFREG S_IFDIR = unix.S_IFDIR S_ISVTX = unix.S_ISVTX AT_REMOVEDIR = unix.AT_REMOVEDIR AT_SYMLINK_NOFOLLOW = unix.AT_SYMLINK_NOFOLLOW LOCK_EX = unix.LOCK_EX LOCK_SH = unix.LOCK_SH LOCK_NB = unix.LOCK_NB LOCK_UN = unix.LOCK_UN EAGAIN = unix.EAGAIN EEXIST = unix.EEXIST EINVAL = unix.EINVAL ELOOP = unix.ELOOP ENOSYS = unix.ENOSYS ENOTDIR = unix.ENOTDIR EOPNOTSUPP = unix.EOPNOTSUPP EWOULDBLOCK = unix.EWOULDBLOCK )
Variables ¶
This section is empty.
Functions ¶
func SyncKeyFile ¶
Types ¶
Click to show internal directories.
Click to hide internal directories.