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)
msgp116ipc/msg.cstruct kerneld_msg *kdmp = (struct kerneld_msg *)msgp;
msgp127ipc/msg.cmemcpy_fromfs (msgh->msg_spot, msgp->mtext, msgsz); 
msgp155ipc/msg.cstatic int real_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz, long msgtyp, int msgflg)
msgp165ipc/msg.cif (!msgp || !msgp->mtext)
msgp172ipc/msg.cerr = verify_area (VERIFY_WRITE, msgp->mtext, msgsz);
msgp256ipc/msg.cstruct kerneld_msg *kdmp = (struct kerneld_msg *) msgp;
msgp271ipc/msg.cput_user (nmsg->msg_type, &msgp->mtype);
msgp272ipc/msg.cmemcpy_tofs (msgp->mtext, nmsg->msg_spot, msgsz);
msgp292ipc/msg.casmlinkage int sys_msgsnd (int msqid, struct msgbuf *msgp, size_t msgsz, int msgflg)
msgp295ipc/msg.creturn real_msgsnd(msqid, msgp, msgsz, msgflg & ~IPC_KERNELD);
msgp298ipc/msg.casmlinkage int sys_msgrcv (int msqid, struct msgbuf *msgp, size_t msgsz,
msgp302ipc/msg.creturn real_msgrcv (msqid, msgp, msgsz, msgtyp, msgflg & ~IPC_KERNELD);
msgp402ipc/msg.cstruct msg *msgp, *msgh;
msgp418ipc/msg.cfor (msgp = msq->msg_first; msgp; msgp = msgh ) {
msgp419ipc/msg.cmsgh = msgp->msg_next;
msgp421ipc/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,