summaryrefslogtreecommitdiff
path: root/arch/powerpc64/bits/msg.h
diff options
context:
space:
mode:
authorBobby Bingham <koorogi@koorogi.info>2016-04-30 19:18:17 -0500
committerRich Felker <dalias@aerifal.cx>2016-05-08 22:57:40 -0400
commitc0ede9e4046a0882d83ae4b45c7dfac86fb7c15d (patch)
tree02956e3cc93a50bcc9c946fbc2bbffb883e72f2f /arch/powerpc64/bits/msg.h
parent6bc7d9c411c3a32cfa9d239b73fffb2ba66dd9ff (diff)
downloadmusl-c0ede9e4046a0882d83ae4b45c7dfac86fb7c15d.tar.gz
add powerpc64 port
Diffstat (limited to 'arch/powerpc64/bits/msg.h')
-rw-r--r--arch/powerpc64/bits/msg.h13
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];
+};