Merge branch 'master' of ssh://gapil.gnulinux.it/srv/git/gapil
[gapil.git] / listati / msqid_ds.h
1 struct msqid_ds {
2     struct ipc_perm msg_perm;    /* structure for operation permission */
3     time_t msg_stime;            /* time of last msgsnd command */
4     time_t msg_rtime;            /* time of last msgrcv command */
5     time_t msg_ctime;            /* time of last change */
6     unsigned long __msg_cbytes;  /* current number of bytes on queue */
7     msgqnum_t msg_qnum;          /* number of messages currently on queue */
8     msglen_t msg_qbytes;         /* max number of bytes allowed on queue */
9     pid_t msg_lspid;             /* pid of last msgsnd() */
10     pid_t msg_lrpid;             /* pid of last msgrcv() */
11 };