Lines Matching defs:msg_queue
18 struct msg_queue { struct
19 struct kern_ipc_perm q_perm;
20 time_t q_stime; /* last msgsnd time */
21 time_t q_rtime; /* last msgrcv time */
22 time_t q_ctime; /* last change time */
23 unsigned long q_cbytes; /* current number of bytes on queue */
24 unsigned long q_qnum; /* number of messages in queue */
25 unsigned long q_qbytes; /* max number of bytes on queue */
26 pid_t q_lspid; /* pid of last msgsnd */
27 pid_t q_lrpid; /* last receive pid */
29 struct list_head q_messages;
30 struct list_head q_receivers;
31 struct list_head q_senders;