diff options
| author | Rich Felker <dalias@aerifal.cx> | 2016-03-06 17:41:56 +0000 |
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2016-03-06 17:41:56 +0000 |
| commit | 83933573aff71a5d178ab71912f177d2d844e63e (patch) | |
| tree | 3c7057d0c83c0030b8a6c0405f1b2797fbbcf450 /arch/mips64/bits/msg.h | |
| parent | 71392a91c333d47b6b3c8f99c897e3b5a7eb6d58 (diff) | |
| download | musl-83933573aff71a5d178ab71912f177d2d844e63e.tar.gz | |
add mips64 port
patch by Mahesh Bodapati and Jaydeep Patil of Imagination
Technologies.
Diffstat (limited to 'arch/mips64/bits/msg.h')
| -rw-r--r-- | arch/mips64/bits/msg.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/mips64/bits/msg.h b/arch/mips64/bits/msg.h new file mode 100644 index 00000000..641e1703 --- /dev/null +++ b/arch/mips64/bits/msg.h @@ -0,0 +1,13 @@ +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; +}; |
