Merge pull request #3206 from flysand7/linux-fdflags-fix

[sys/linux]: Fix numeric values for socket fd flags
This commit is contained in:
gingerBill
2024-02-18 14:56:31 +00:00
committed by GitHub
+2 -2
View File
@@ -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,
}
/*