diff --git a/man2/msgctl.2 b/man2/msgctl.2 index 87d660526..4c588c8a1 100644 --- a/man2/msgctl.2 +++ b/man2/msgctl.2 @@ -60,19 +60,16 @@ data structure is defined in \fI\fP as follows: .in +4n .EX struct msqid_ds { - struct ipc_perm msg_perm; /* Ownership and permissions */ - time_t msg_stime; /* Time of last msgsnd(2) */ - time_t msg_rtime; /* Time of last msgrcv(2) */ - time_t msg_ctime; /* Creation time/time of last - modification via msgctl() */ - unsigned long msg_cbytes; /* Current number of bytes in - queue (nonstandard) */ - msgqnum_t msg_qnum; /* Current number of messages - in queue */ - msglen_t msg_qbytes; /* Maximum number of bytes - allowed in queue */ - pid_t msg_lspid; /* PID of last msgsnd(2) */ - pid_t msg_lrpid; /* PID of last msgrcv(2) */ + struct ipc_perm msg_perm; /* Ownership and permissions */ + time_t msg_stime; /* Time of last msgsnd(2) */ + time_t msg_rtime; /* Time of last msgrcv(2) */ + time_t msg_ctime; /* Time of creation or last + modification by msgctl() */ + unsigned long msg_cbytes; /* # of bytes in queue */ + msgqnum_t msg_qnum; /* # number of messages in queue */ + msglen_t msg_qbytes; /* Maximum # of bytes in queue */ + pid_t msg_lspid; /* PID of last msgsnd(2) */ + pid_t msg_lrpid; /* PID of last msgrcv(2) */ }; .EE .in