T
Tom
If there are multiple threads that make calls to
ReaderWriterLock.AcquireWriterLock(x), clearly all but one will be
blocked at any time.
Is the order at which the threads acquire lock (as the previous one
releases) the same order that the threads called AcquireWriterLock in
the first place (e.g. the second thread to call AcquireWriterLock will
be the second to acquire the lock, and so on, like a FIFO?)
Secondly, why isn' this in the documentation? (or did I miss it?)
Many thanks for any assistance
Tom
ReaderWriterLock.AcquireWriterLock(x), clearly all but one will be
blocked at any time.
Is the order at which the threads acquire lock (as the previous one
releases) the same order that the threads called AcquireWriterLock in
the first place (e.g. the second thread to call AcquireWriterLock will
be the second to acquire the lock, and so on, like a FIFO?)
Secondly, why isn' this in the documentation? (or did I miss it?)
Many thanks for any assistance
Tom