diff options
author | Bobby Bingham <koorogi@koorogi.info> | 2016-04-30 19:18:17 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-05-08 22:57:40 -0400 |
commit | c0ede9e4046a0882d83ae4b45c7dfac86fb7c15d (patch) | |
tree | 02956e3cc93a50bcc9c946fbc2bbffb883e72f2f /arch/powerpc64/bits/msg.h | |
parent | 6bc7d9c411c3a32cfa9d239b73fffb2ba66dd9ff (diff) | |
download | musl-c0ede9e4046a0882d83ae4b45c7dfac86fb7c15d.tar.gz |
add powerpc64 port
Diffstat (limited to 'arch/powerpc64/bits/msg.h')
-rw-r--r-- | arch/powerpc64/bits/msg.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/powerpc64/bits/msg.h b/arch/powerpc64/bits/msg.h new file mode 100644 index 00000000..badcf168 --- /dev/null +++ b/arch/powerpc64/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 __unused[2]; +}; |