X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=listati%2Fmsqid_ds.h;fp=listati%2Fmsqid_ds.h;h=4efeabe978695a8e4476e0291a97f49f2fae0d49;hp=0000000000000000000000000000000000000000;hb=06661f47754a536098afe2b30cb04469918f2fa3;hpb=bdf6e88eeb9b3aef06d57930ec8b89083639e56d diff --git a/listati/msqid_ds.h b/listati/msqid_ds.h new file mode 100644 index 0000000..4efeabe --- /dev/null +++ b/listati/msqid_ds.h @@ -0,0 +1,13 @@ +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 */ +};