diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 21:30:16 +0100 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2025-11-08 21:30:16 +0100 |
| commit | 090def7870411d54175ffc6bf23dfede71d48d45 (patch) | |
| tree | 0d2394e1dfebd34d9dcc13413eca309e85acfb94 | |
| parent | 8f2a268c2f1892c2dcd3afc09d745bf614f4918c (diff) | |
whoops
| -rw-r--r-- | core/sys/posix/sys_sem.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/posix/sys_sem.odin b/core/sys/posix/sys_sem.odin index 3f60907e1..012c0bbdb 100644 --- a/core/sys/posix/sys_sem.odin +++ b/core/sys/posix/sys_sem.odin @@ -144,9 +144,7 @@ when ODIN_OS == .Darwin || ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD || ODIN_OS semid_ds :: struct { sem_perm: ipc_perm, // [PSX] operation permission structure sem_otime: time_t, // [PSX] last semop() - __sem_otime_high: c.ulong, sem_ctime: time_t, // [PSX] last time changed by semctl() - __sem_ctime_high: c.ulong, sem_nsems: c.ulong, // [PSX] number of semaphores in set __glibc_reserved3: c.ulong, __glibc_reserved4: c.ulong, @@ -155,7 +153,9 @@ when ODIN_OS == .Darwin || ODIN_OS == .FreeBSD || ODIN_OS == .NetBSD || ODIN_OS semid_ds :: struct { sem_perm: ipc_perm, // [PSX] operation permission structure sem_otime: time_t, // [PSX] last semop() + __sem_otime_high: c.ulong, sem_ctime: time_t, // [PSX] last time changed by semctl() + __sem_ctime_high: c.ulong, sem_nsems: c.ulong, // [PSX] number of semaphores in set __glibc_reserved3: c.ulong, __glibc_reserved4: c.ulong, |