mirror of
https://github.com/ziglang/zig.git
synced 2024-11-27 15:42:49 +00:00
968c969e2a
This commit also corrects a mistake from commit
6dc2236054
which did not properly delete
files when upgrading to the 1.2.2 musl headers.
13 lines
321 B
C
Vendored
13 lines
321 B
C
Vendored
struct semid_ds {
|
|
struct ipc_perm sem_perm;
|
|
unsigned long __sem_otime_lo;
|
|
unsigned long __sem_otime_hi;
|
|
unsigned long __sem_ctime_lo;
|
|
unsigned long __sem_ctime_hi;
|
|
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
unsigned short sem_nsems;
|
|
long __unused3;
|
|
long __unused4;
|
|
time_t sem_otime;
|
|
time_t sem_ctime;
|
|
}; |