From: Kurt Zeilenga Date: Sat, 29 Aug 1998 21:46:42 +0000 (+0000) Subject: Document important limitation of this basic implementation X-Git-Tag: PHP3_TOOL_0_0~100 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c98a6ff9e99bd7f0513e940933d518c1e2ba16aa;p=openldap Document important limitation of this basic implementation --- diff --git a/libraries/liblthread/rdwr.c b/libraries/liblthread/rdwr.c index 8de2be407a..51c15e8e30 100644 --- a/libraries/liblthread/rdwr.c +++ b/libraries/liblthread/rdwr.c @@ -1,3 +1,10 @@ +/* +** This basic implementation of Reader/Writer locks does not +** protect writers from starvation. That is, if a writer is +** currently waiting on a reader, any new reader will get +** the lock before the writer. +*/ + /******************************************************** * An example source module to accompany... *