From 179343f9a30c8db595fa6df05a5de6d016f64d5c Mon Sep 17 00:00:00 2001 From: Bo Borgerson Date: Sat, 22 May 2010 05:49:46 +0200 Subject: [PATCH] sem_overview.7: tfix Signed-off-by: Michael Kerrisk --- man7/sem_overview.7 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man7/sem_overview.7 b/man7/sem_overview.7 index ef354feca..312e4bdaa 100644 --- a/man7/sem_overview.7 +++ b/man7/sem_overview.7 @@ -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)).