diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-01-22 01:15:55 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-01-22 01:15:55 +0000 |
commit | ae9bd0596b5ca8e92913d9f818c64ba511216bfd (patch) | |
tree | eafc1c7f65882601b5e85d477bddc80dec3f34d9 /pkg/abi/linux/file_arm64.go | |
parent | 5617f1f1aac00e845a7b62f683980215939ac151 (diff) | |
parent | 0693fb05d15dff29cba51988f19a8d5cea784162 (diff) |
Merge release-20200115.0-62-g0693fb0 (automated)
Diffstat (limited to 'pkg/abi/linux/file_arm64.go')
-rwxr-xr-x | pkg/abi/linux/file_arm64.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/pkg/abi/linux/file_arm64.go b/pkg/abi/linux/file_arm64.go index f16c07589..26a54f416 100755 --- a/pkg/abi/linux/file_arm64.go +++ b/pkg/abi/linux/file_arm64.go @@ -14,6 +14,14 @@ package linux +// Constants for open(2). +const ( + O_DIRECTORY = 000040000 + O_NOFOLLOW = 000100000 + O_DIRECT = 000200000 + O_LARGEFILE = 000400000 +) + // Stat represents struct stat. type Stat struct { Dev uint64 |