author | Rich Felker <dalias@aerifal.cx> | 2019年07月31日 01:17:53 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2019年08月02日 00:08:23 -0400 |
commit | 3c02bacf0f6bed54979e67d22c43745df9add4a0 (patch) | |
tree | 79cefd0e7a63642d08972c5f6d69eeaf12c435d2 /include/sys/msg.h | |
parent | 72f50245d018af0c31b38dec83c557a4e5dd1ea8 (diff) | |
download | musl-3c02bacf0f6bed54979e67d22c43745df9add4a0.tar.gz |
-rw-r--r-- | include/sys/msg.h | 4 |
diff --git a/include/sys/msg.h b/include/sys/msg.h index be6afc34..db5c62a4 100644 --- a/include/sys/msg.h +++ b/include/sys/msg.h @@ -25,9 +25,9 @@ typedef unsigned long msglen_t; #define MSG_NOERROR 010000 #define MSG_EXCEPT 020000 -#define MSG_STAT 11 +#define MSG_STAT (11 | (IPC_STAT & 0x100)) #define MSG_INFO 12 -#define MSG_STAT_ANY 13 +#define MSG_STAT_ANY (13 | (IPC_STAT & 0x100)) struct msginfo { int msgpool, msgmap, msgmax, msgmnb, msgmni, msgssz, msgtql; |