diff options
author | jhb <jhb@FreeBSD.org> | 2014-10-24 19:55:49 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2014-10-24 19:55:49 +0000 |
commit | 9435dea22b7080933d9e0aadf2338a04ee1850a1 (patch) | |
tree | 164779a6bdd397f19cfd1677f8802a49979332a1 | |
parent | 6ab33f375cd4a6fd01c358f3af62aa4cba3275e4 (diff) | |
download | FreeBSD-src-9435dea22b7080933d9e0aadf2338a04ee1850a1.zip FreeBSD-src-9435dea22b7080933d9e0aadf2338a04ee1850a1.tar.gz |
Don't reference sem(4) from the POSIX semaphore pages. POSIX semaphores
were reimplemented using umtx in FreeBSD 9 and no longer use sem(4).
-rw-r--r-- | lib/libc/gen/sem_destroy.3 | 3 | ||||
-rw-r--r-- | lib/libc/gen/sem_getvalue.3 | 3 | ||||
-rw-r--r-- | lib/libc/gen/sem_init.3 | 3 | ||||
-rw-r--r-- | lib/libc/gen/sem_open.3 | 3 | ||||
-rw-r--r-- | lib/libc/gen/sem_post.3 | 3 | ||||
-rw-r--r-- | lib/libc/gen/sem_timedwait.3 | 3 | ||||
-rw-r--r-- | lib/libc/gen/sem_wait.3 | 3 |
7 files changed, 7 insertions, 14 deletions
diff --git a/lib/libc/gen/sem_destroy.3 b/lib/libc/gen/sem_destroy.3 index f488b4e..b437420 100644 --- a/lib/libc/gen/sem_destroy.3 +++ b/lib/libc/gen/sem_destroy.3 @@ -67,8 +67,7 @@ There are currently threads blocked on the semaphore that points to. .El .Sh SEE ALSO -.Xr sem_init 3 , -.Xr sem 4 +.Xr sem_init 3 .Sh STANDARDS The .Fn sem_destroy diff --git a/lib/libc/gen/sem_getvalue.3 b/lib/libc/gen/sem_getvalue.3 index a8dd177..d81c2b1 100644 --- a/lib/libc/gen/sem_getvalue.3 +++ b/lib/libc/gen/sem_getvalue.3 @@ -65,8 +65,7 @@ points to an invalid semaphore. .Sh SEE ALSO .Xr sem_post 3 , .Xr sem_trywait 3 , -.Xr sem_wait 3 , -.Xr sem 4 +.Xr sem_wait 3 .Sh STANDARDS The .Fn sem_getvalue diff --git a/lib/libc/gen/sem_init.3 b/lib/libc/gen/sem_init.3 index 52bcb75..a96749b 100644 --- a/lib/libc/gen/sem_init.3 +++ b/lib/libc/gen/sem_init.3 @@ -93,8 +93,7 @@ Memory allocation error. .Xr sem_getvalue 3 , .Xr sem_post 3 , .Xr sem_trywait 3 , -.Xr sem_wait 3 , -.Xr sem 4 +.Xr sem_wait 3 .Sh STANDARDS The .Fn sem_init diff --git a/lib/libc/gen/sem_open.3 b/lib/libc/gen/sem_open.3 index 3527605..2fdc019 100644 --- a/lib/libc/gen/sem_open.3 +++ b/lib/libc/gen/sem_open.3 @@ -210,8 +210,7 @@ The named semaphore does not exist. .Xr sem_getvalue 3 , .Xr sem_post 3 , .Xr sem_trywait 3 , -.Xr sem_wait 3 , -.Xr sem 4 +.Xr sem_wait 3 .Sh STANDARDS The .Fn sem_open , diff --git a/lib/libc/gen/sem_post.3 b/lib/libc/gen/sem_post.3 index 67559cc..485d2fc 100644 --- a/lib/libc/gen/sem_post.3 +++ b/lib/libc/gen/sem_post.3 @@ -69,8 +69,7 @@ points to an invalid semaphore. .Sh SEE ALSO .Xr sem_getvalue 3 , .Xr sem_trywait 3 , -.Xr sem_wait 3 , -.Xr sem 4 +.Xr sem_wait 3 .Sh STANDARDS The .Fn sem_post diff --git a/lib/libc/gen/sem_timedwait.3 b/lib/libc/gen/sem_timedwait.3 index 3a58d41..254af60 100644 --- a/lib/libc/gen/sem_timedwait.3 +++ b/lib/libc/gen/sem_timedwait.3 @@ -108,8 +108,7 @@ A signal interrupted this function. .Sh SEE ALSO .Xr sem_post 3 , .Xr sem_trywait 3 , -.Xr sem_wait 3 , -.Xr sem 4 +.Xr sem_wait 3 .Sh STANDARDS The .Fn sem_timedwait diff --git a/lib/libc/gen/sem_wait.3 b/lib/libc/gen/sem_wait.3 index 9de8ba8..cb5a2f6 100644 --- a/lib/libc/gen/sem_wait.3 +++ b/lib/libc/gen/sem_wait.3 @@ -92,8 +92,7 @@ The semaphore value was zero, and thus could not be decremented. .Sh SEE ALSO .Xr sem_getvalue 3 , .Xr sem_post 3 , -.Xr sem_timedwait 3 , -.Xr sem 4 +.Xr sem_timedwait 3 .Sh STANDARDS The .Fn sem_wait |