Author: kib
Date: Wed Aug  7 17:46:07 2019
New Revision: 350683
URL: https://svnweb.freebsd.org/changeset/base/350683

Log:
  Clarify the robustness guarantees.
  
  Wording submitted by: Martin Simmons <mar...@lispworks.com>
  MFC after:    3 days

Modified:
  head/share/man/man3/pthread_mutex_lock.3
  head/share/man/man3/pthread_mutex_trylock.3

Modified: head/share/man/man3/pthread_mutex_lock.3
==============================================================================
--- head/share/man/man3/pthread_mutex_lock.3    Wed Aug  7 16:56:00 2019        
(r350682)
+++ head/share/man/man3/pthread_mutex_lock.3    Wed Aug  7 17:46:07 2019        
(r350683)
@@ -27,7 +27,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd April 29, 2016
+.Dd August 7, 2019
 .Dt PTHREAD_MUTEX_LOCK 3
 .Os
 .Sh NAME
@@ -66,8 +66,8 @@ A deadlock would occur if the thread blocked waiting f
 .It Bq Er EOWNERDEAD
 The argument
 .Fa mutex
-points to a robust mutex and the previous owning thread terminated
-while holding the mutex lock.
+points to a robust mutex and the process containing the previous owning
+thread terminated while holding the mutex lock.
 The lock was granted to the caller and it is up to the new owner
 to make the state consistent.
 .It Bq Er ENOTRECOVERABLE

Modified: head/share/man/man3/pthread_mutex_trylock.3
==============================================================================
--- head/share/man/man3/pthread_mutex_trylock.3 Wed Aug  7 16:56:00 2019        
(r350682)
+++ head/share/man/man3/pthread_mutex_trylock.3 Wed Aug  7 17:46:07 2019        
(r350683)
@@ -27,7 +27,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd April 29, 2016
+.Dd August 7, 2019
 .Dt PTHREAD_MUTEX_TRYLOCK 3
 .Os
 .Sh NAME
@@ -67,8 +67,8 @@ is already locked.
 .It Bq Er EOWNERDEAD
 The argument
 .Fa mutex
-points to a robust mutex and the previous owning thread terminated
-while holding the mutex lock.
+points to a robust mutex and the process containing the previous owning
+thread terminated while holding the mutex lock.
 The lock was granted to the caller and it is up to the new owner
 to make the state consistent.
 .It Bq Er ENOTRECOVERABLE
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to