Document important limitation of this basic implementation

This commit is contained in:
Kurt Zeilenga 1998-08-29 21:46:42 +00:00
parent efac7f4c88
commit c98a6ff9e9

View File

@ -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...
*