vote up 1 vote down star

The documentation of ReaderWriterLockSlim.EnterUpgradeableReadLock says:

A thread in upgradeable mode can downgrade to read mode or upgrade to write mode.

How do I downgrade the lock to a read lock? The documentation does't tell...

[Edit:] I'm not trying to get the write lock. I just want to downgrade the upgradeable lock to a read lock so that another thread can acquire the upgradeable lock.

flag

76% accept rate

2 Answers

vote up 1 vote down check

According to the MSDN documentation for ReaderWriterLockSlim (the class itself):

"A thread in upgradeable mode can downgrade to read mode by first calling the EnterReadLock method and then calling the ExitUpgradeableReadLock method."

link|flag
My mistake for not reading the documentation till the end. Thanks! – Hosam Aly Dec 20 '08 at 15:18
vote up 0 vote down

It's automatic - the lock will upgrade to writeable when necessary. You don't have to do anything. It's a read lock unless you request writing.

link|flag
Thanks, but I'm not trying to acquire the write lock. I just want to downgrade the upgradeable lock to a read lock so that another thread can acquire the upgradeable lock. – Hosam Aly Dec 20 '08 at 13:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.