diff options
| -rw-r--r-- | lib/libc_r/man/pthread_cond_destroy.3 | 2 | ||||
| -rw-r--r-- | lib/libc_r/man/pthread_cond_timedwait.3 | 2 | ||||
| -rw-r--r-- | lib/libc_r/man/pthread_cond_wait.3 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc_r/man/pthread_cond_destroy.3 b/lib/libc_r/man/pthread_cond_destroy.3 index 75ae99686f41..a9c4a9dbbdf7 100644 --- a/lib/libc_r/man/pthread_cond_destroy.3 +++ b/lib/libc_r/man/pthread_cond_destroy.3 @@ -44,7 +44,7 @@ function frees the resources allocated by the condition variable .Fa cond . .Sh RETURN VALUES If successful, the -.Fn pthread_cond_init +.Fn pthread_cond_destroy function will return zero, otherwise an error number will be returned to indicate the error. .Sh ERRORS diff --git a/lib/libc_r/man/pthread_cond_timedwait.3 b/lib/libc_r/man/pthread_cond_timedwait.3 index 0de2278a2fcd..6a239699ba0a 100644 --- a/lib/libc_r/man/pthread_cond_timedwait.3 +++ b/lib/libc_r/man/pthread_cond_timedwait.3 @@ -52,7 +52,7 @@ or with the same condition variable, or if the system time reaches the time specified in .Fa abstime , -and the current thread reaquires the lock on +and the current thread requires the lock on .Fa mutex . .Sh RETURN VALUES If successful, the diff --git a/lib/libc_r/man/pthread_cond_wait.3 b/lib/libc_r/man/pthread_cond_wait.3 index 022bbf2822d0..e4819274e8d9 100644 --- a/lib/libc_r/man/pthread_cond_wait.3 +++ b/lib/libc_r/man/pthread_cond_wait.3 @@ -48,7 +48,7 @@ and unblocks the mutex specified by The waiting thread unblocks only after another thread calls .Xr pthread_cond_signal 3 , or .Xr pthread_cond_broadcast 3 -with the same condition variable, and the current thread reaquires the lock +with the same condition variable, and the current thread requires the lock on .Fa mutex . .Sh RETURN VALUES |
