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);
msgp125arch/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,
msgp49ipc/msg.cstatic int real_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
msgp59ipc/msg.cif (!msgp) 
msgp66ipc/msg.cmtype = msgp->mtype;
msgp68ipc/msg.cerr = verify_area (VERIFY_READ, msgp->mtext, msgsz);
msgp71ipc/msg.cif ((mtype = get_user (&msgp->mtype)) < 1)
msgp119ipc/msg.cstruct kerneld_msg *kdmp = (struct kerneld_msg *)msgp;
msgp130ipc/msg.cmemcpy_fromfs (msgh->msg_spot, msgp->mtext, msgsz); 
msgp186ipc/msg.cstatic int real_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz, long msgtyp, int msgflg)
msgp197ipc/msg.cif (!msgp || !msgp->mtext)
msgp204ipc/msg.cerr = verify_area (VERIFY_WRITE, msgp->mtext, msgsz);
msgp299ipc/msg.cstruct kerneld_msg *kdmp = (struct kerneld_msg *) msgp;
msgp314ipc/msg.cput_user (nmsg->msg_type, &msgp->mtype);
msgp315ipc/msg.cmemcpy_tofs (msgp->mtext, nmsg->msg_spot, msgsz);
msgp341ipc/msg.casmlinkage int sys_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
msgp344ipc/msg.creturn real_msgsnd(msqid, msgp, msgsz, msgflg & ~IPC_KERNELD);
msgp347ipc/msg.casmlinkage int sys_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz,
msgp351ipc/msg.creturn real_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg & ~IPC_KERNELD);
msgp459ipc/msg.cstruct msg *msgp, *msgh;
msgp475ipc/msg.cfor (msgp = msq->msg_first; msgp; msgp = msgh ) {
msgp476ipc/msg.cmsgh = msgp->msg_next;
msgp478ipc/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,