From 17ecbdac5580a6406b0d6ec84fa17be1f4bb2507 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Mon, 27 Jun 2005 15:26:07 +0000 Subject: [PATCH] Fix cond_wait prototype. Thanks to ASIF Erayath Thekke Valappil . --- doc/tour.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tour.texi b/doc/tour.texi index efa1166..aed36fe 100644 --- a/doc/tour.texi +++ b/doc/tour.texi @@ -742,7 +742,7 @@ condition after the wait completes and, if necessary, wait again. Initializes @var{cond} as a new condition variable. @end deftypefun -@deftypefun void cond_wait (struct condition *@var{cond}) +@deftypefun void cond_wait (struct condition *@var{cond}, struct lock *@var{lock}) Atomically releases @var{lock} (the monitor lock) and waits for @var{cond} to be signaled by some other piece of code. After @var{cond} is signaled, reacquires @var{lock} before returning. -- 2.30.2