aboutsummaryrefslogtreecommitdiff
path: root/core/sys/linux
diff options
context:
space:
mode:
authorblob1807 <12388588+blob1807@users.noreply.github.com>2024-02-21 00:43:27 +1000
committerblob1807 <12388588+blob1807@users.noreply.github.com>2024-02-21 00:43:27 +1000
commit004cd4933d2d80cd3416edc3feae585baff3a68b (patch)
treeddbb077c955089f02a02ef6640ad1e1b72713576 /core/sys/linux
parent14ee2181cbf270863d0aa7e1be36814c1ded1354 (diff)
parentb43c1f2b5bf4f092fe4407f33f8fe563321518a7 (diff)
Merge branch 'master' of https://github.com/blob1807/Odin
Diffstat (limited to 'core/sys/linux')
-rw-r--r--core/sys/linux/bits.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/linux/bits.odin b/core/sys/linux/bits.odin
index 8b7de5d5e..ad519e1cd 100644
--- a/core/sys/linux/bits.odin
+++ b/core/sys/linux/bits.odin
@@ -944,8 +944,8 @@ Socket_Type :: enum {
Bits for Socket_FD_Flags
*/
Socket_FD_Flags_Bits :: enum {
- NONBLOCK = 14,
- CLOEXEC = 25,
+ NONBLOCK = 11,
+ CLOEXEC = 19,
}
/*