taglinefilesource code
MSGMNI49include/linux/msg.h#define MSGPOOL (MSGMNI*MSGMNB/1024)  /* size in kilobytes of message pool */
MSGMNI20ipc/msg.cstatic struct msqid_ds *msgque[MSGMNI];
MSGMNI32ipc/msg.cfor (id = 0; id < MSGMNI; id++) 
MSGMNI56ipc/msg.cid = (unsigned int) msqid % MSGMNI;
MSGMNI63ipc/msg.cif (msq->msg_perm.seq != (unsigned int) msqid / MSGMNI) 
MSGMNI86ipc/msg.c|| msq->msg_perm.seq != (unsigned int) msqid / MSGMNI) {
MSGMNI128ipc/msg.cid = (unsigned int) msqid % MSGMNI;
MSGMNI141ipc/msg.cif (msq->msg_perm.seq != (unsigned int) msqid / MSGMNI)
MSGMNI233ipc/msg.cfor (id = 0; id < MSGMNI; id++) 
MSGMNI267ipc/msg.creturn (unsigned int) msq->msg_perm.seq * MSGMNI + id;
MSGMNI289ipc/msg.creturn (unsigned int) msq->msg_perm.seq * MSGMNI + id;
MSGMNI298ipc/msg.cmsg_seq = (msg_seq+1) % ((unsigned)(1<<31)/MSGMNI); /* increment, but avoid overflow */
MSGMNI335ipc/msg.cmsginfo.msgmni = MSGMNI;
MSGMNI367ipc/msg.cid = (unsigned int) msq->msg_perm.seq * MSGMNI + msqid;
MSGMNI396ipc/msg.cid = (unsigned int) msqid % MSGMNI;
MSGMNI400ipc/msg.cif (msq->msg_perm.seq != (unsigned int) msqid / MSGMNI)