Date: Wed, 7 Aug 2019 17:46:07 +0000 (UTC) From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r350683 - head/share/man/man3 Message-ID: <201908071746.x77Hk7t2024168@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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 <martin@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908071746.x77Hk7t2024168>