shmget.2: Minor rewording

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2014-04-17 13:28:07 +02:00
parent 2b23ecbdea
commit 8ab18f6ce0
1 changed files with 9 additions and 9 deletions

View File

@ -264,14 +264,14 @@ The following limits on shared memory segment resources affect the
call:
.TP
.B SHMALL
System wide maximum of shared memory pages
(on Linux, this limit can be read and modified via
.IR /proc/sys/kernel/shmall ).
System wide maximum of shared memory pages.
On Linux, this limit can be read and modified via
.IR /proc/sys/kernel/shmall .
.TP
.B SHMMAX
Maximum size in bytes for a shared memory segment: policy dependent
(on Linux, this limit can be read and modified via
.IR /proc/sys/kernel/shmmax ).
Maximum size in bytes for a shared memory segment: policy dependent.
On Linux, this limit can be read and modified via
.IR /proc/sys/kernel/shmmax .
.TP
.B SHMMIN
Minimum size in bytes for a shared memory segment: implementation
@ -281,9 +281,9 @@ is the effective minimum size).
.TP
.B SHMMNI
System wide maximum number of shared memory segments: implementation
dependent (currently 4096, was 128 before Linux 2.3.99;
on Linux, this limit can be read and modified via
.IR /proc/sys/kernel/shmmni ).
dependent (currently 4096, was 128 before Linux 2.3.99).
On Linux, this limit can be read and modified via
.IR /proc/sys/kernel/shmmni .
.\" Kernels between 2.4.x and 2.6.8 had an off-by-one error that meant
.\" that we could create one more segment than SHMMNI -- MTK
.\" This /proc file is not available in Linux 2.2 and earlier -- MTK