Re: PRRWLock is not documented in MDC
"Wan-Teh Chang" <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.nspr |
|---|---|
| Message-ID | <[email protected]> |
You can use PRRWLock. It turns out the lack of documentation for PRRWLock is an old known bug, sigh: https://bugzilla.mozilla.org/show_bug.cgi?id=87200 Please use the comments in "prrwlock.h" as the documentation for now. PRRWLock is implemented using: - the native reader-writer locks, if they exist (right now HP-UX and Solaris only), or - NSPR locks and conditional variables. It is not implemented using semaphores. Wan-Teh