diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2019-01-29 17:38:49 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2019-01-29 17:38:49 +0000 |
commit | 8badade5b327f7a3061f68af40e0b76195231e35 (patch) | |
tree | ad9c02b8e526719227080e76b2a9ef1240faa6e3 /lib/libpthread | |
parent | 6fad50020af47cae6ca37120876136df7e8aac61 (diff) |
Tweak description, pthread_cond_signal(3) unblocks *at least* one thread.
ok kettenis@, visa@
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/man/pthread_cond_signal.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libpthread/man/pthread_cond_signal.3 b/lib/libpthread/man/pthread_cond_signal.3 index a2ceb594b0a..cf605c4d63a 100644 --- a/lib/libpthread/man/pthread_cond_signal.3 +++ b/lib/libpthread/man/pthread_cond_signal.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pthread_cond_signal.3,v 1.8 2013/06/05 03:44:50 tedu Exp $ +.\" $OpenBSD: pthread_cond_signal.3,v 1.9 2019/01/29 17:38:48 mpi Exp $ .\" .\" Copyright (c) 1997 Brian Cully <shmit@kublai.com> .\" All rights reserved. @@ -29,7 +29,7 @@ .\" .\" $FreeBSD: pthread_cond_signal.3,v 1.5 1999/08/28 00:03:04 peter Exp $ .\" -.Dd $Mdocdate: June 5 2013 $ +.Dd $Mdocdate: January 29 2019 $ .Dt PTHREAD_COND_SIGNAL 3 .Os .Sh NAME @@ -42,7 +42,7 @@ .Sh DESCRIPTION The .Fn pthread_cond_signal -function unblocks one thread waiting for the condition variable +function unblocks at least one thread waiting for the condition variable .Fa cond . .Sh RETURN VALUES If successful, the |