diff options
Diffstat (limited to 'arch/aarch64/bits/msg.h')
-rw-r--r-- | arch/aarch64/bits/msg.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/aarch64/bits/msg.h b/arch/aarch64/bits/msg.h new file mode 100644 index 00000000..0135a08d --- /dev/null +++ b/arch/aarch64/bits/msg.h @@ -0,0 +1,14 @@ +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 __pad1; + unsigned long __pad2; +}; |