Symbol: msgrcv
lib/libc/hidden/sys/msg.h
25
PROTO_CANCEL(msgrcv);
lib/libc/sys/w_msgrcv.c
27
ret = HIDDEN(msgrcv)(msqid, msgp, msgsz, msgtyp, msgflg);
lib/libc/sys/w_msgrcv.c
31
DEF_CANCEL(msgrcv);
regress/lib/libc/sys/t_msgctl.c
227
(void)msgrcv(id, &msg,
regress/lib/libc/sys/t_msgctl.c
331
(void)msgrcv(id, &msg, sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT);
regress/lib/libc/sys/t_msgrcv.c
124
if (msgrcv(id, &msg, MSG_LEN, MSG_MTYPE_1, 0) < 0)
regress/lib/libc/sys/t_msgrcv.c
167
ATF_REQUIRE_ERRNO(ENOMSG, msgrcv(id, &msg,
regress/lib/libc/sys/t_msgrcv.c
174
ATF_REQUIRE_ERRNO(EFAULT, msgrcv(id, (void *)-1,
regress/lib/libc/sys/t_msgrcv.c
179
ATF_REQUIRE_ERRNO(EINVAL, msgrcv(-1, &msg,
regress/lib/libc/sys/t_msgrcv.c
184
ATF_REQUIRE_ERRNO(EINVAL, msgrcv(-1, &msg,
regress/lib/libc/sys/t_msgrcv.c
191
ATF_REQUIRE_ERRNO(E2BIG, msgrcv(id, &r,
regress/lib/libc/sys/t_msgrcv.c
219
(void)msgrcv(id, &msg2, MSG_LEN, MSG_MTYPE_2, IPC_NOWAIT);
regress/lib/libc/sys/t_msgrcv.c
225
(void)msgrcv(id, &msg2, MSG_LEN, MSG_MTYPE_1, IPC_NOWAIT);
regress/lib/libc/sys/t_msgrcv.c
269
if (msgrcv(id, &msg, MSG_LEN, MSG_MTYPE_1,
regress/lib/libc/sys/t_msgrcv.c
319
(void)msgrcv(id, &msg2, MSG_SMALLLEN,
regress/lib/libc/sys/t_msgrcv.c
90
(void)msgrcv(id, &msg2, MSG_LEN, MSG_MTYPE_1, IPC_NOWAIT);
regress/sys/kern/sysvmsg/msgtest.c
189
if (msgrcv(sender_msqid, &m, sizeof(m), MTYPE_1_ACK, 0) != sizeof(m))
regress/sys/kern/sysvmsg/msgtest.c
203
if (msgrcv(sender_msqid, &m, sizeof(m), MTYPE_2_ACK, 0) != sizeof(m))
regress/sys/kern/sysvmsg/msgtest.c
324
if (msgrcv(msqid, &m, sizeof(m), MTYPE_1, 0) != sizeof(m))
regress/sys/kern/sysvmsg/msgtest.c
341
if (msgrcv(msqid, &m, sizeof(m), MTYPE_2, 0) != sizeof(m))
sys/sys/msg.h
142
int msgrcv(int, void *, size_t, long, int);