Remove BUGS section that no longer applies after recent changes to semaphore

code.

OK-ed by:	davidxu
This commit is contained in:
Edward Tomasz Napierala 2010-01-07 16:52:00 +00:00
parent 1aa0091897
commit 10302b1ade

View File

@ -27,7 +27,7 @@
.\"
.\" $FreeBSD$
.\"
.Dd December 8, 2009
.Dd January 7, 2010
.Dt SEM_INIT 3
.Os
.Sh NAME
@ -90,10 +90,3 @@ The
.Fn sem_init
function conforms to
.St -p1003.1-96 .
.Sh BUGS
A sem_t is a pointer to a separately allocated structure,
therefore process shared semaphores only work between related processes
and do not perform very well
(each operation is a system call,
while single-process semaphores only do a system call
if they need to block or wake up a thread).