summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorVisa Hankala <visa@cvs.openbsd.org>2022-03-11 14:42:09 +0000
committerVisa Hankala <visa@cvs.openbsd.org>2022-03-11 14:42:09 +0000
commitb9269c543aa26a0786f58657c5d117f81c8f67e3 (patch)
tree40c1e653b63ef0c727cb328ec2af815611af3143 /share
parent48916fdc6b9868a8d23e56b85752a67da9b35752 (diff)
Fix formatting of cond_signal().
Diffstat (limited to 'share')
-rw-r--r--share/man/man9/cond_init.98
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man9/cond_init.9 b/share/man/man9/cond_init.9
index 2494b72a6b8..60f2c591c9a 100644
--- a/share/man/man9/cond_init.9
+++ b/share/man/man9/cond_init.9
@@ -1,4 +1,4 @@
-.\" $OpenBSD: cond_init.9,v 1.2 2017/12/14 06:43:44 jmc Exp $ */
+.\" $OpenBSD: cond_init.9,v 1.3 2022/03/11 14:42:08 visa Exp $ */
.\"
.\" Copyright (c) 2017 David Gwynne <dlg@openbsd.org>
.\"
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: December 14 2017 $
+.Dd $Mdocdate: March 11 2022 $
.Dt COND_INIT 9
.Os
.Sh NAME
@@ -45,12 +45,12 @@ for use.
is used to sleep on the wait condition
.Fa c
until whatever the thread is waiting on calls
-.Fa cond_signal .
+.Fn cond_signal .
.Fa wmesg
is a pointer to a character string indicating the reason the thread
is sleeping.
.Pp
-.Fa cond_signal
+.Fn cond_signal
is used to notify the thread waiting on
.Fa c
that the work has finished and it may proceed.