mirror of
git://git.musl-libc.org/musl
synced 2025-01-24 23:53:45 +00:00
c375585c66
this layout is more common already than the old generic, and should become even more common in the future with new archs added and with 64-bit time_t on 32-bit archs.
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];
|
|
};
|