Symbol: msgrcv
lib/libpthread/pthread_cancelstub.c
124
__typeof(msgrcv) _sys_msgrcv;
lib/libpthread/pthread_cancelstub.c
800
__strong_alias(_msgrcv, msgrcv)
sys/sys/msg.h
205
ssize_t msgrcv(int, void *, size_t, long, int);
tests/kernel/t_sysv.c
259
ATF_REQUIRE_MSG(msgrcv(sender_msqid, &m, MESSAGE_TEXT_LEN,
tests/kernel/t_sysv.c
273
ATF_REQUIRE_MSG(msgrcv(sender_msqid, &m, MESSAGE_TEXT_LEN,
tests/kernel/t_sysv.c
354
if (msgrcv(msqid, &m, MESSAGE_TEXT_LEN, MTYPE_1, 0)
tests/kernel/t_sysv.c
372
if (msgrcv(msqid, &m, MESSAGE_TEXT_LEN, MTYPE_2, 0)
tests/lib/libc/sys/t_msgctl.c
226
(void)msgrcv(id, &msg,
tests/lib/libc/sys/t_msgctl.c
330
(void)msgrcv(id, &msg, sizeof(struct msg), MSG_MTYPE_1, IPC_NOWAIT);
tests/lib/libc/sys/t_msgrcv.c
123
if (msgrcv(id, &msg, MSG_LEN, MSG_MTYPE_1, 0) < 0)
tests/lib/libc/sys/t_msgrcv.c
166
ATF_REQUIRE_ERRNO(ENOMSG, msgrcv(id, &msg,
tests/lib/libc/sys/t_msgrcv.c
173
ATF_REQUIRE_ERRNO(EFAULT, msgrcv(id, (void *)-1,
tests/lib/libc/sys/t_msgrcv.c
178
ATF_REQUIRE_ERRNO(EINVAL, msgrcv(-1, &msg,
tests/lib/libc/sys/t_msgrcv.c
183
ATF_REQUIRE_ERRNO(EINVAL, msgrcv(-1, &msg,
tests/lib/libc/sys/t_msgrcv.c
190
ATF_REQUIRE_ERRNO(E2BIG, msgrcv(id, &r,
tests/lib/libc/sys/t_msgrcv.c
218
(void)msgrcv(id, &msg2, MSG_LEN, MSG_MTYPE_2, IPC_NOWAIT);
tests/lib/libc/sys/t_msgrcv.c
224
(void)msgrcv(id, &msg2, MSG_LEN, MSG_MTYPE_1, IPC_NOWAIT);
tests/lib/libc/sys/t_msgrcv.c
268
if (msgrcv(id, &msg, MSG_LEN, MSG_MTYPE_1,
tests/lib/libc/sys/t_msgrcv.c
318
(void)msgrcv(id, &msg2, MSG_SMALLLEN,
tests/lib/libc/sys/t_msgrcv.c
89
(void)msgrcv(id, &msg2, MSG_LEN, MSG_MTYPE_1, IPC_NOWAIT);
tests/lib/libpthread/t_cancellation.c
396
RL(msgrcv(msgid, buf, sizeof(buf), 0, 0));