comparison usr/src/man/man3c/cond_init.3c @ 23918:f3c8f3a2a25c

13404 man page spelling errors Reviewed by: Ryan Zezeski <ryan@oxide.computer> Reviewed by: Robert Mustacchi <rm@fingolfin.org> Approved by: Richard Lowe <richlowe@richlowe.net>
author Peter Tribble <peter.tribble@gmail.com>
date Thu, 31 Dec 2020 10:47:42 +0000
parents 7910714d2f54
children
comparison
equal deleted inserted replaced
23917:265d423ec4f7 23918:f3c8f3a2a25c
42 .\" 42 .\"
43 .\" Portions Copyright (c) 1995 IEEE. All Rights Reserved. 43 .\" Portions Copyright (c) 1995 IEEE. All Rights Reserved.
44 .\" Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved. 44 .\" Copyright (c) 2001, The IEEE and The Open Group. All Rights Reserved.
45 .\" Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved. 45 .\" Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved.
46 .\" 46 .\"
47 .TH COND_INIT 3C "February 15, 2020" 47 .TH COND_INIT 3C "December 28, 2020"
48 .SH NAME 48 .SH NAME
49 cond_init, cond_wait, cond_timedwait, cond_reltimedwait, cond_signal, 49 cond_init, cond_wait, cond_timedwait, cond_reltimedwait, cond_signal,
50 cond_broadcast, cond_destroy \- condition variables 50 cond_broadcast, cond_destroy \- condition variables
51 .SH SYNOPSIS 51 .SH SYNOPSIS
52 .nf 52 .nf
433 .LP 433 .LP
434 The \fBcond_timedwait()\fR and \fBcond_reltimedwait()\fR functions are similar 434 The \fBcond_timedwait()\fR and \fBcond_reltimedwait()\fR functions are similar
435 to \fBcond_wait()\fR, except that the calling thread will not wait for the 435 to \fBcond_wait()\fR, except that the calling thread will not wait for the
436 condition to become true past the absolute time specified by \fIabstime\fR or 436 condition to become true past the absolute time specified by \fIabstime\fR or
437 the relative time specified by \fIreltime\fR. Note that \fBcond_timedwait()\fR 437 the relative time specified by \fIreltime\fR. Note that \fBcond_timedwait()\fR
438 or \fBcond_reltimedwait()\fR might continue to block as it trys to reacquire 438 or \fBcond_reltimedwait()\fR might continue to block as it tries to reacquire
439 the mutex pointed to by \fImp\fR, which may be locked by another thread. If 439 the mutex pointed to by \fImp\fR, which may be locked by another thread. If
440 either \fBcond_timedwait()\fR or \fBcond_reltimedwait()\fR returns because of a 440 either \fBcond_timedwait()\fR or \fBcond_reltimedwait()\fR returns because of a
441 timeout, it returns the error value \fBETIME\fR. 441 timeout, it returns the error value \fBETIME\fR.