diff options
author | Rich Felker <dalias@aerifal.cx> | 2019-07-29 18:22:33 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019-07-29 18:22:33 -0400 |
commit | 95ed26353ce8642c266e4bd29efbb7466c6c5312 (patch) | |
tree | 3f78516f53a765194dcb62b08322a6556645b0d6 /arch/i386/bits/msg.h | |
parent | de5e56ce1626882dddfd5a7a900c0723af02d6ab (diff) | |
download | musl-95ed26353ce8642c266e4bd29efbb7466c6c5312.tar.gz musl-95ed26353ce8642c266e4bd29efbb7466c6c5312.tar.xz musl-95ed26353ce8642c266e4bd29efbb7466c6c5312.zip |
duplicate generic bits/msg.h for each arch using it, in prep to change
Diffstat (limited to 'arch/i386/bits/msg.h')
-rw-r--r-- | arch/i386/bits/msg.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/i386/bits/msg.h b/arch/i386/bits/msg.h new file mode 100644 index 00000000..bc8436c4 --- /dev/null +++ b/arch/i386/bits/msg.h @@ -0,0 +1,15 @@ +struct msqid_ds { + struct ipc_perm msg_perm; + time_t msg_stime; + int __unused1; + time_t msg_rtime; + int __unused2; + time_t msg_ctime; + int __unused3; + unsigned long msg_cbytes; + msgqnum_t msg_qnum; + msglen_t msg_qbytes; + pid_t msg_lspid; + pid_t msg_lrpid; + unsigned long __unused[2]; +}; |