Tagged Questions
The readerwriterlock tag has no wiki summary.
5
votes
2answers
326 views
What are the real downsides of using ReaderWriterLock
We have project targeted .NET 2.0 RTM (yes, it should be .NET 2.0 RTM, we have some orthodox clients). And I'm just wondering what are the downsides of ReaderWriterLock? Why is it so bad that everyone ...
5
votes
5answers
912 views
How would you simplfy Entering and Exiting a ReaderWriterLock?
This seems very noisy to me. Five lines of overhead is just too much.
m_Lock.EnterReadLock()
Try
Return m_List.Count
Finally
m_Lock.ExitReadLock()
End Try
So how would you simply this?
3
votes
2answers
257 views
Reader Writer Lock supporting low priority writers
I am trying to find (or implement) a Reader/Writer Lock which supports low-priority writers, but have been unsuccessful in researching any existing solutions.
What I mean by low-priority writer is: ...
2
votes
5answers
337 views
Readers writers problem concurrent Java
This is an implementation of readers writers, i.e. many readers can read but only one writer can write at any one time. Does this work as expected?
public class ReadersWriters extends Thread{
...
2
votes
2answers
140 views
How to program critical section for reader-writer systems?
Lets say, I have a reader-writer system where reader and writer are concurrently running. 'a' and 'b' are two shared variables, which are related to each other, so modification to them needs to be an ...
2
votes
5answers
969 views
How do I find the lockholder (reader) of my ReaderWriterLock in windbg
I've got a dump of a .Net process that has hung due to a deadlock (the gui thread is no longer responding, and my logs show that some threads have stopped responding). I have taken a snapshot and am ...
1
vote
5answers
159 views
Swapping buffers in single-writer-multiple-reader threads
The Story
There is a writer thread, periodically gathering data from somewhere (in real-time, but that doesn't matter much in the question). There are many readers then reading from these data. The ...
1
vote
2answers
82 views
How is a ReaderWriterLock shared amongst threads? Is it implemented with a singleton?
When you want to use a ReaderWriterLock you declare it like this:
ReaderWriterLock rwLock = new ReaderWriterLock;
Well if you are doing that for all your different threads that are going to access ...
1
vote
3answers
254 views
Cross-process read-write synchronization primative in .NET?
Is there a read/write locking mechanism that works across processes (similar to Mutex, but read/write instead exclusive locking)? I would like to allow concurrent read access, but exclusive write ...
1
vote
1answer
87 views
Ordering in ReaderWriterLock
When I use lock(){...}, I cannot garantee which thread will enter the lock first.
What about ReaderWriterLock? Does it works like a FIFO for the writers or not?
1
vote
1answer
245 views
Synchronize datatable/dataview for read write
I have application in .net 2.0 in which I have a DataTable object globally in my application and have different dataviews in whole application.
When an action performed i have create many threads ...
1
vote
1answer
449 views
How using readerwriterlock correctly
Hello i need to use writerreaderlock in my method. I want to know how use it correctly.
I got a dictionary of ObjectA
public class ObjectA
{
public ReaderWriterLock RWL {get;set;}
public ...
1
vote
3answers
3k views
ReaderWriterLockSlim vs. Monitor
I have an IDictionary<TKey,TValue> implementation that internally holds n other Dictionary<TKey, TValue> and distributes that insertions by the HashCode of the key to the invidual ...
0
votes
1answer
89 views
Reader-Writer Preference Using Semaphores
I'm currently working on a correct implementation of the Reader-Writer problem (see here).
I found this solution in the Qt docks guaranteeing fair treatment of Reader and Writer threads by using a ...
0
votes
1answer
114 views
PThreads: Read/Write Lock: How to check if thread holds the write lock?
I am implementing a wrapper around pthread_rwlock_t for iphone dev.
Docs say that acquiring a read lock after acquiring a write lock is undefined.
Does POSIX allow me to query whether I already have ...
0
votes
2answers
193 views
Ordered Locking Pattern and ReaderWriterLock in C#
Does the ordered locking pattern prevent deadlocks when used with a ReaderWriterLock (or ReaderWriterLockSlim)?
Clearly the pattern prevents deadlocks with a mutex. Does it still prevent deadlocks ...