authorgravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-05-30 17:05:39+02:00
committergravatar for thatlemon@gmail.comLemonBoy <thatlemon@gmail.com> 2019-05-30 17:05:39+02:00
log51fc375b0d17f50bb6e0a542e9eebfff1534c581
treec859fb738e816bcbfec6906e9aa0f8132e7c0546
parent477ee9c8b992612c952dfd13c4f951d4e04adb22

Correct flag definitions for arm64


1 files changed, 5 insertions(+), 5 deletions(-)

std/os/bits/linux/arm64.zig+5-5
......@@ -299,16 +299,16 @@ pub const O_NONBLOCK = 0o4000;
299299pub const O_DSYNC = 0o10000;
300300pub const O_SYNC = 0o4010000;
301301pub const O_RSYNC = 0o4010000;
302pub const O_DIRECTORY = 0o200000;
303pub const O_NOFOLLOW = 0o400000;
302pub const O_DIRECTORY = 0o40000;
303pub const O_NOFOLLOW = 0o100000;
304304pub const O_CLOEXEC = 0o2000000;
305305
306306pub const O_ASYNC = 0o20000;
307pub const O_DIRECT = 0o40000;
308pub const O_LARGEFILE = 0;
307pub const O_DIRECT = 0o200000;
308pub const O_LARGEFILE = 0o400000;
309309pub const O_NOATIME = 0o1000000;
310310pub const O_PATH = 0o10000000;
311pub const O_TMPFILE = 0o20200000;
311pub const O_TMPFILE = 0o20040000;
312312pub const O_NDELAY = O_NONBLOCK;
313313
314314pub const F_DUPFD = 0;