sem_overview.7: tfix

Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Bo Borgerson 2010-05-22 05:49:46 +02:00 committed by Michael Kerrisk
parent 904ef0636f
commit 179343f9a3
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.TH SEM_OVERVIEW 7 2009-02-25 "Linux" "Linux Programmer's Manual"
.TH SEM_OVERVIEW 7 2010-05-22 "Linux" "Linux Programmer's Manual"
.SH NAME
sem_overview \- Overview of POSIX semaphores
.SH DESCRIPTION
@ -88,7 +88,7 @@ A thread-shared semaphore is placed in an area of memory shared
between by the threads of a process, for example, a global variable.
A process-shared semaphore must be placed in a shared memory region
(e.g., a System V shared memory segment created using
.BR semget (2),
.BR shmget (2),
or a POSIX shared memory object built created using
.BR shm_open (3)).