Lines Matching defs:msg_queue
88 struct msg_queue { struct
89 struct kern_ipc_perm q_perm;
90 time_t q_stime; /* last msgsnd time */
91 time_t q_rtime; /* last msgrcv time */
92 time_t q_ctime; /* last change time */
93 unsigned long q_cbytes; /* current number of bytes on queue */
94 unsigned long q_qnum; /* number of messages in queue */
95 unsigned long q_qbytes; /* max number of bytes on queue */
96 pid_t q_lspid; /* pid of last msgsnd */
97 pid_t q_lrpid; /* last receive pid */
99 struct list_head q_messages;
100 struct list_head q_receivers;
101 struct list_head q_senders;