diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-07-17 23:20:44 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-07-17 23:20:44 +0000 |
commit | 9f4e682c1c3b4061308f82f3d9e01de0778d111a (patch) | |
tree | e96e4f291fa9c0814053983570511790084437e1 /pkg/abi | |
parent | 85f25d97ff2a21e74052168f05f70b891bd912df (diff) | |
parent | 6f7e2bb388cb29a355dece8921671c0085f53ea9 (diff) |
Merge 6f7e2bb3 (automated)
Diffstat (limited to 'pkg/abi')
-rw-r--r-- | pkg/abi/linux/file.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pkg/abi/linux/file.go b/pkg/abi/linux/file.go index f78ffaa82..285338e47 100644 --- a/pkg/abi/linux/file.go +++ b/pkg/abi/linux/file.go @@ -34,13 +34,14 @@ const ( O_TRUNC = 00001000 O_APPEND = 00002000 O_NONBLOCK = 00004000 + O_DSYNC = 00010000 O_ASYNC = 00020000 O_DIRECT = 00040000 O_LARGEFILE = 00100000 O_DIRECTORY = 00200000 O_NOFOLLOW = 00400000 O_CLOEXEC = 02000000 - O_SYNC = 04010000 + O_SYNC = 04000000 O_PATH = 010000000 ) |