mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 22:04:21 +00:00
This is from Qualcomm's fork: https://github.com/quic/musl I maintain a fork of musl where I rebase Qualcomm's changes on top of the latest musl release, which I then use as the basis for musl updates in Zig. My fork can be found here: https://github.com/alexrp/musl/tree/hexagon
13 lines
322 B
C
Vendored
13 lines
322 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;
|
|
unsigned short sem_nsems;
|
|
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
long __unused3;
|
|
long __unused4;
|
|
time_t sem_otime;
|
|
time_t sem_ctime;
|
|
};
|