X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=listati%2Fmsqid_ds.h;h=e173954d026dfcc98292a13c020e6f075262757b;hp=4efeabe978695a8e4476e0291a97f49f2fae0d49;hb=7e19b798d0cc09960daad695d8f3b242170bb3b4;hpb=06661f47754a536098afe2b30cb04469918f2fa3 diff --git a/listati/msqid_ds.h b/listati/msqid_ds.h index 4efeabe..e173954 100644 --- a/listati/msqid_ds.h +++ b/listati/msqid_ds.h @@ -1,13 +1,11 @@ struct msqid_ds { - struct ipc_perm msg_perm; /* structure for operation permission */ - time_t msg_stime; /* time of last msgsnd command */ - time_t msg_rtime; /* time of last msgrcv command */ - time_t msg_ctime; /* time of last change */ - msgqnum_t msg_qnum; /* number of messages currently on queue */ - msglen_t msg_qbytes; /* max number of bytes allowed on queue */ - pid_t msg_lspid; /* pid of last msgsnd() */ - pid_t msg_lrpid; /* pid of last msgrcv() */ - struct msg *msg_first; /* first message on queue, unused */ - struct msg *msg_last; /* last message in queue, unused */ - unsigned long int msg_cbytes; /* current number of bytes on queue */ + struct ipc_perm msg_perm; /* structure for operation permission */ + time_t msg_stime; /* time of last msgsnd command */ + time_t msg_rtime; /* time of last msgrcv command */ + time_t msg_ctime; /* time of last change */ + unsigned long __msg_cbytes; /* current number of bytes on queue */ + msgqnum_t msg_qnum; /* number of messages currently on queue */ + msglen_t msg_qbytes; /* max number of bytes allowed on queue */ + pid_t msg_lspid; /* pid of last msgsnd() */ + pid_t msg_lrpid; /* pid of last msgrcv() */ };