taglinefilesource code
MSGMNI49include/linux/msg.h#define MSGPOOL (MSGMNI*MSGMNB/1024)  /* size in kilobytes of message pool */
MSGMNI25ipc/msg.cstatic struct msqid_ds *msgque[MSGMNI];
MSGMNI39ipc/msg.cfor (id = 0; id < MSGMNI; id++) 
MSGMNI71ipc/msg.cid = (unsigned int) msqid % MSGMNI;
MSGMNI78ipc/msg.cif (msq->msg_perm.seq != (unsigned int) msqid / MSGMNI) 
MSGMNI130ipc/msg.c|| msq->msg_perm.seq != (unsigned int) msqid / MSGMNI) {
MSGMNI177ipc/msg.cid = (unsigned int) msqid % MSGMNI;
MSGMNI190ipc/msg.cif (msq->msg_perm.seq != (unsigned int) msqid / MSGMNI)
MSGMNI326ipc/msg.cfor (id = 0; id < MSGMNI; id++) 
MSGMNI360ipc/msg.creturn (unsigned int) msq->msg_perm.seq * MSGMNI + id;
MSGMNI395ipc/msg.creturn (unsigned int) msq->msg_perm.seq * MSGMNI + id;
MSGMNI404ipc/msg.cmsg_seq = (msg_seq+1) % ((unsigned)(1<<31)/MSGMNI); /* increment, but avoid overflow */
MSGMNI441ipc/msg.cmsginfo.msgmni = MSGMNI;
MSGMNI473ipc/msg.cid = (unsigned int) msq->msg_perm.seq * MSGMNI + msqid;
MSGMNI502ipc/msg.cid = (unsigned int) msqid % MSGMNI;
MSGMNI506ipc/msg.cif (msq->msg_perm.seq != (unsigned int) msqid / MSGMNI)