Home | History | Annotate | Download | only in tests-m32

Lines Matching refs:msqid

42 static int msqid = -1;
64 if (msqid != -1) {
65 int rc = msgctl(msqid, IPC_RMID, 0);
67 msqid, str_ipc_64, str_ipc_rmid);
68 msqid = -1;
77 sys_msgrcv(int msqid, void *msgp, size_t sz, kernel_long_t msgtyp,
81 return syscall(__NR_msgrcv, msqid, msgp, sz, msgtyp, msgflg);
83 return msgrcv(msqid, msgp, sz, msgtyp, msgflg);
99 msqid = msgget(IPC_PRIVATE, IPC_CREAT | S_IRWXU);
100 if (msqid == -1)
103 str_ipc_private, str_ipc_creat, msqid);
110 msqid, (long long) mtype);
111 if (msgsnd(msqid, &msg, msgsz, 0) == -1)
114 if (sys_msgrcv(msqid, &msg, msgsz, -mtype, 0) != msgsz)
118 msqid, (long long) mtype, -(long long) mtype);