musl/arch/x32/bits/msg.h

17 lines
295 B
C
Raw Normal View History

2014-01-07 21:43:34 +00:00
struct msqid_ds
{
struct ipc_perm msg_perm;
time_t msg_stime;
time_t msg_rtime;
time_t msg_ctime;
unsigned long msg_cbytes;
2014-01-07 21:53:38 +00:00
long __unused1;
2014-01-07 21:43:34 +00:00
msgqnum_t msg_qnum;
2014-01-07 21:53:38 +00:00
long __unused2;
2014-01-07 21:43:34 +00:00
msglen_t msg_qbytes;
2014-01-07 21:53:38 +00:00
long __unused3;
2014-01-07 21:43:34 +00:00
pid_t msg_lspid;
pid_t msg_lrpid;
2014-01-07 21:53:38 +00:00
unsigned long long __unused[2];
2014-01-07 21:43:34 +00:00
};