mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
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
No EOL
321 B
C
Vendored
13 lines
No EOL
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;
|
|
}; |