diff options
author | jhb <jhb@FreeBSD.org> | 2012-06-06 13:35:30 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2012-06-06 13:35:30 +0000 |
commit | b9ed43daa7a54d2ccf8666fa598f37194e9e2725 (patch) | |
tree | bf4b962bd83329374e250c9a8c920bda6eab3557 /share | |
parent | 0e4e6ccdcdea3ee93f2da20322ead73b7c47550f (diff) | |
download | FreeBSD-src-b9ed43daa7a54d2ccf8666fa598f37194e9e2725.zip FreeBSD-src-b9ed43daa7a54d2ccf8666fa598f37194e9e2725.tar.gz |
Use the defined terms "readers" and "writers" to simplify some text.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man9/rwlock.9 | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/share/man/man9/rwlock.9 b/share/man/man9/rwlock.9 index f7da699..45fc3bd 100644 --- a/share/man/man9/rwlock.9 +++ b/share/man/man9/rwlock.9 @@ -114,12 +114,10 @@ cannot be held while sleeping. The .Nm locks have priority propagation like mutexes, but priority -can be propagated only to an exclusive holder. -This limitation comes from the fact that shared owners +can be propagated only to writers. +This limitation comes from the fact that readers are anonymous. -Another important property is that shared holders of -.Nm -can recurse, +Another important property is that readers can always recurse, and exclusive locks can be made recursive selectively. .Ss Macros and Functions .Bl -tag -width indent |