Searched refs:msgrcv (Results 1 - 3 of 3) sorted by relevance

/xnu-2422.115.4/bsd/sys/
H A Dmsg.h89 * Possible values for the fifth parameter to msgrcv(), in addition to the
129 pid_t msg_lrpid; /* [XSI] pid of last msgrcv() */
132 time_t msg_rtime; /* [XSI] time of last msgrcv() */
152 pid_t msg_lrpid; /* [XSI] pid of last msgrcv() */
155 time_t msg_rtime; /* [XSI] time of last msgrcv() */
188 pid_t msg_lrpid; /* [XSI] pid of last msgrcv() */
191 user_time_t msg_rtime; /* [XSI] time of last msgrcv() */
210 pid_t msg_lrpid; /* [XSI] pid of last msgrcv() */
213 user64_time_t msg_rtime; /* [XSI] time of last msgrcv() */
229 pid_t msg_lrpid; /* [XSI] pid of last msgrcv() */
364 ssize_t msgrcv(int, void *, size_t, long, int) __DARWIN_ALIAS_C(msgrcv); variable
[all...]
/xnu-2422.115.4/bsd/kern/
H A Dsysv_msg.c91 (sy_call_t *)msgsnd, (sy_call_t *)msgrcv
329 * Entry point for all MSG calls: msgctl, msgget, msgsnd, msgrcv
344 * functions (msgctl, msgget, msgsnd, msgrcv). The correct
648 * user_msqid_ds's can be locked by msgsnd or msgrcv
1123 msgrcv(struct proc *p, struct msgrcv_args *uap, user_ssize_t *retval) function
1153 printf("call to msgrcv(%d, 0x%qx, %ld, %ld, %d)\n", msqid, user_msgp,
1321 printf("msgrcv: goodnight\n");
1326 printf("msgrcv: good morning (eval=%d)\n", eval);
/xnu-2422.115.4/tools/tests/xnu_quick_test/
H A Dtests.c4984 * Test msgctl, msgget, msgrcv, msgsnd system calls.
5042 my_result = msgrcv( my_msg_queue_id, &my_msg, sizeof( my_msg.msq_buffer ), 0, 0 );
5044 printf( "msgrcv failed with errno %d - %s \n", errno, strerror( errno ) );
5048 printf( "msgrcv failed to return the correct number of bytes in our buffer \n" );
5052 printf( "msgrcv failed to get the correct message \n" );

Completed in 85 milliseconds