aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2020-11-15 10:06:50 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-11-15 10:06:50 +0100
commit10aa508cadb6cb1c08901ff7447fe63b1ba9e050 (patch)
treecd169c040be178314c1de73f3a844e5e4c99fa1d
parentbd0ff36407c2ccbec15040c3d4311a7d310b1fae (diff)
downloadman-pages-10aa508cadb6cb1c08901ff7447fe63b1ba9e050.tar.gz
msgctl.2: Make comments in 'msqid_ds' definition more compact
The comments do not need to be so verbose, since the main text provides the full details. Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/msgctl.223
1 files changed, 10 insertions, 13 deletions
diff --git a/man2/msgctl.2 b/man2/msgctl.2
index 87d6605261..4c588c8a1c 100644
--- a/man2/msgctl.2
+++ b/man2/msgctl.2
@@ -60,19 +60,16 @@ data structure is defined in \fI<sys/msg.h>\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