mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-24 12:54:05 +00:00

See the WHATSNEW file for details; this doesn't have any major changes for wasi-libc; in particular, the new catgets and GLOB_TILDE features are disabled.
15 lines
325 B
C
15 lines
325 B
C
struct semid_ds {
|
|
struct ipc_perm sem_perm;
|
|
time_t sem_otime;
|
|
time_t sem_ctime;
|
|
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
|
unsigned short sem_nsems;
|
|
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
#else
|
|
char __sem_nsems_pad[sizeof(long)-sizeof(short)];
|
|
unsigned short sem_nsems;
|
|
#endif
|
|
long __unused3;
|
|
long __unused4;
|
|
};
|