taglinefilesource code
msgp134arch/i386/kernel/sys_i386.creturn sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
msgp68arch/mips/kernel/ipc.creturn sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
msgp93arch/sparc/kernel/sys_sparc.creturn sys_msgrcv (first, tmp.msgp, second, tmp.msgtyp, third);
msgp45include/linux/ipc.hstruct msgbuf *msgp;
msgp71include/linux/msg.hasmlinkage int sys_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg);
msgp72include/linux/msg.hasmlinkage int sys_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz, long msgtyp,
msgp46ipc/msg.cstatic int real_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
msgp56ipc/msg.cif (!msgp) 
msgp63ipc/msg.cmtype = msgp->mtype;
msgp65ipc/msg.cerr = verify_area (VERIFY_READ, msgp->mtext, msgsz);
msgp68ipc/msg.cif ((mtype = get_user (&msgp->mtype)) < 1)
msgp115ipc/msg.cstruct kerneld_msg *kdmp = (struct kerneld_msg *)msgp;
msgp126ipc/msg.cmemcpy_fromfs (msgh->msg_spot, msgp->mtext, msgsz); 
msgp154ipc/msg.cstatic int real_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz, long msgtyp, int msgflg)
msgp164ipc/msg.cif (!msgp || !msgp->mtext)
msgp171ipc/msg.cerr = verify_area (VERIFY_WRITE, msgp->mtext, msgsz);
msgp254ipc/msg.cstruct kerneld_msg *kdmp = (struct kerneld_msg *) msgp;
msgp269ipc/msg.cput_user (nmsg->msg_type, &msgp->mtype);
msgp270ipc/msg.cmemcpy_tofs (msgp->mtext, nmsg->msg_spot, msgsz);
msgp290ipc/msg.casmlinkage int sys_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
msgp293ipc/msg.creturn real_msgsnd(msqid, msgp, msgsz, msgflg & ~IPC_KERNELD);
msgp296ipc/msg.casmlinkage int sys_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz,
msgp300ipc/msg.creturn real_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg & ~IPC_KERNELD);
msgp400ipc/msg.cstruct msg *msgp, *msgh;
msgp416ipc/msg.cfor (msgp = msq->msg_first; msgp; msgp = msgh ) {
msgp417ipc/msg.cmsgh = msgp->msg_next;
msgp419ipc/msg.ckfree(msgp);
msgp85ipc/util.casmlinkage int sys_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
msgp90ipc/util.casmlinkage int sys_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz, long msgtyp,