mirror of
https://git.proxmox.com/git/wasi-libc
synced 2025-08-18 19:07:09 +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.
13 lines
239 B
C
13 lines
239 B
C
struct msqid_ds {
|
|
struct ipc_perm msg_perm;
|
|
time_t msg_stime;
|
|
time_t msg_rtime;
|
|
time_t msg_ctime;
|
|
unsigned long msg_cbytes;
|
|
msgqnum_t msg_qnum;
|
|
msglen_t msg_qbytes;
|
|
pid_t msg_lspid;
|
|
pid_t msg_lrpid;
|
|
unsigned long __unused[2];
|
|
};
|