msgctl.2, msgget.2, msgop.2, semctl.2, semget.2, semop.2, shmctl.2, shmget.2, shmop.2: Add "System V" to .TH line and text

Make it clear that these pages relate to System V IPC,
not POSIX IPC.

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2013-03-18 12:59:24 +01:00
parent 91bb32bf2e
commit 47f065d6e8
9 changed files with 19 additions and 18 deletions

View File

@ -36,7 +36,7 @@
.\" .\"
.TH MSGCTL 2 2012-05-31 "Linux" "Linux Programmer's Manual" .TH MSGCTL 2 2012-05-31 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
msgctl \- message control operations msgctl \- System V message control operations
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -49,7 +49,7 @@ msgctl \- message control operations
.BR msgctl () .BR msgctl ()
performs the control operation specified by performs the control operation specified by
.I cmd .I cmd
on the message queue with identifier on the System V message queue with identifier
.IR msqid . .IR msqid .
.PP .PP
The The

View File

@ -34,7 +34,7 @@
.\" .\"
.TH MSGGET 2 2012-05-31 "Linux" "Linux Programmer's Manual" .TH MSGGET 2 2012-05-31 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
msgget \- get a message queue identifier msgget \- get a System V message queue identifier
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -46,7 +46,7 @@ msgget \- get a message queue identifier
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR msgget () .BR msgget ()
system call returns the message queue identifier associated system call returns the System V message queue identifier associated
with the value of the with the value of the
.I key .I key
argument. argument.

View File

@ -39,7 +39,7 @@
.\" .\"
.TH MSGOP 2 2012-05-31 "Linux" "Linux Programmer's Manual" .TH MSGOP 2 2012-05-31 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
msgrcv, msgsnd \- message operations msgrcv, msgsnd \- System V message queue operations
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -59,7 +59,7 @@ The
and and
.BR msgrcv () .BR msgrcv ()
system calls are used, respectively, to send messages to, system calls are used, respectively, to send messages to,
and receive messages from, a message queue. and receive messages from, a System V message queue.
The calling process must have write permission on the message queue The calling process must have write permission on the message queue
in order to send a message, and read permission to receive a message. in order to send a message, and read permission to receive a message.
.PP .PP

View File

@ -40,7 +40,7 @@
.\" .\"
.TH SEMCTL 2 2012-05-31 "Linux" "Linux Programmer's Manual" .TH SEMCTL 2 2012-05-31 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
semctl \- semaphore control operations semctl \- System V semaphore control operations
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -53,7 +53,7 @@ semctl \- semaphore control operations
.BR semctl () .BR semctl ()
performs the control operation specified by performs the control operation specified by
.I cmd .I cmd
on the semaphore set identified by on the System V semaphore set identified by
.IR semid , .IR semid ,
or on the or on the
.IR semnum -th .IR semnum -th

View File

@ -35,7 +35,7 @@
.\" .\"
.TH SEMGET 2 2012-05-31 "Linux" "Linux Programmer's Manual" .TH SEMGET 2 2012-05-31 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
semget \- get a semaphore set identifier semget \- get a System V semaphore set identifier
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -49,7 +49,7 @@ semget \- get a semaphore set identifier
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR semget () .BR semget ()
system call returns the semaphore set identifier system call returns the System V semaphore set identifier
associated with the argument associated with the argument
.IR key . .IR key .
A new set of A new set of

View File

@ -34,7 +34,7 @@
.\" .\"
.TH SEMOP 2 2012-08-27 "Linux" "Linux Programmer's Manual" .TH SEMOP 2 2012-08-27 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
semop, semtimedop \- semaphore operations semop, semtimedop \- System V semaphore operations
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -55,7 +55,8 @@ Feature Test Macro Requirements for glibc (see
.BR semtimedop (): .BR semtimedop ():
_GNU_SOURCE _GNU_SOURCE
.SH DESCRIPTION .SH DESCRIPTION
Each semaphore in a semaphore set has the following associated values: Each semaphore in a System V semaphore set
has the following associated values:
.sp .sp
.in +4n .in +4n
.nf .nf

View File

@ -44,7 +44,7 @@
.\" .\"
.TH SHMCTL 2 2013-03-18 "Linux" "Linux Programmer's Manual" .TH SHMCTL 2 2013-03-18 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
shmctl \- shared memory control shmctl \- System V shared memory control
.SH SYNOPSIS .SH SYNOPSIS
.ad l .ad l
.B #include <sys/ipc.h> .B #include <sys/ipc.h>
@ -57,7 +57,7 @@ shmctl \- shared memory control
.BR shmctl () .BR shmctl ()
performs the control operation specified by performs the control operation specified by
.I cmd .I cmd
on the shared memory segment whose identifier is given in on the System V shared memory segment whose identifier is given in
.IR shmid . .IR shmid .
.PP .PP
The The

View File

@ -37,7 +37,7 @@
.\" .\"
.TH SHMGET 2 2012-05-31 "Linux" "Linux Programmer's Manual" .TH SHMGET 2 2012-05-31 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
shmget \- allocates a shared memory segment shmget \- allocates a System V shared memory segment
.SH SYNOPSIS .SH SYNOPSIS
.ad l .ad l
.B #include <sys/ipc.h> .B #include <sys/ipc.h>
@ -48,7 +48,7 @@ shmget \- allocates a shared memory segment
.ad b .ad b
.SH DESCRIPTION .SH DESCRIPTION
.BR shmget () .BR shmget ()
returns the identifier of the shared memory segment returns the identifier of the System V shared memory segment
associated with the value of the argument associated with the value of the argument
.IR key . .IR key .
A new shared memory segment, with size equal to the value of A new shared memory segment, with size equal to the value of

View File

@ -40,7 +40,7 @@
.\" FIXME Linux 2.6.9 added SHM_EXEC, which should be documented .\" FIXME Linux 2.6.9 added SHM_EXEC, which should be documented
.TH SHMOP 2 2013-02-12 "Linux" "Linux Programmer's Manual" .TH SHMOP 2 2013-02-12 "Linux" "Linux Programmer's Manual"
.SH NAME .SH NAME
shmat, shmdt \- shared memory operations shmat, shmdt \- System V shared memory operations
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B #include <sys/types.h> .B #include <sys/types.h>
@ -52,7 +52,7 @@ shmat, shmdt \- shared memory operations
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
.BR shmat () .BR shmat ()
attaches the shared memory segment identified by attaches the System V shared memory segment identified by
.I shmid .I shmid
to the address space of the calling process. to the address space of the calling process.
The attaching address is specified by The attaching address is specified by