Lines Matching defs:kmsqid
96 typedef struct kmsqid { struct
97 kipc_perm_t msg_perm; /* operation permission struct */
98 list_t msg_list; /* list of messages on q */
99 msglen_t msg_cbytes; /* current # bytes on q */
100 msgqnum_t msg_qnum; /* # of messages on q */
101 msgqnum_t msg_qmax; /* max # of messages on q */
102 msglen_t msg_qbytes; /* max # of bytes on q */
103 pid_t msg_lspid; /* pid of last msgsnd */
104 pid_t msg_lrpid; /* pid of last msgrcv */
105 time_t msg_stime; /* last msgsnd time */
106 time_t msg_rtime; /* last msgrcv time */
107 time_t msg_ctime; /* last change time */
108 uint_t msg_snd_cnt; /* # of waiting senders */
109 uint_t msg_rcv_cnt; /* # of waiting receivers */
110 uint64_t msg_lowest_type; /* Smallest type on queue */
118 msg_select_t *msg_fnd_sndr;
119 msg_select_t *msg_fnd_rdr;
145 } kmsqid_t; argument