Tagged Questions
13
votes
4answers
3k views
Workaround for the WaitHandle.WaitAll 64 handle limit?
My application spawns loads of different small worker threads via ThreadPool.QueueUserWorkItem which I keep track of via multiple ManualResetEvent instances. I use the WaitHandle.WaitAll method to ...
8
votes
6answers
2k views
Do I need to call Close() on a ManualResetEvent?
I've been reading up on .NET Threading and was working on some code that uses a ManualResetEvent. I have found lots of code samples on the internet. However, when reading the documentation for ...
6
votes
1answer
246 views
Explanation of Text on Threading in “C# 3.0 in a Nutshell”
While reading C# 3.0 in a Nutshell by Joseph and Ben Albahari, I came across the following paragraph (page 673, first paragraph in section titled "Signaling with Wait and Pulse")
"The Monitor ...
5
votes
4answers
175 views
How do you close an application when some WaitHandle is in the middle of a call to WaitOne?
Is there a standard way to close out an application "cleanly" while some WaitHandle objects may be in the state of a current blocking call to WaitOne?
For example, there may be a background thread ...
3
votes
1answer
255 views
When can ManualResetEvent.Set() return false?
According the the MSDN documentation, Set() and Reset() on ManualResetEvent (or any EventWaitHandle) returns a boolean indicator whether or not the operation was successful.
Under which circumstances ...
3
votes
4answers
524 views
Running multiple threads, starting new one as another finishes
I have an application that has many cases. Each case has many multipage tif files. I need to covert the tf files to pdf file. Since there are so many file, I thought I could thread the conversion ...
3
votes
1answer
3k views
WaitHandle.WaitAny and Semaphore class
Edit: I'd like to plead temporary insanity for even asking this question, but it made sense at the time (see edit 2 below).
For a .NET 3.5 project, I have two types of resources (R1 and R2) that I ...
3
votes
2answers
466 views
Can a call to WaitHandle.SignalAndWait be ignored for performance profiling purposes?
I just downloaded the trial version of ANTS Performance Profiler from Red Gate and am investigating some of my team's code. Immediately I notice that there's a particular section of code that ANTS is ...
2
votes
3answers
86 views
Is there any reason to use a WaitHandle over a bool to flag for cancellation?
I've inherited a bit of threaded code, and upon reviewing it, I'm finding structures like this (within a background thread method):
private ManualResetEvent stopEvent = new ManualResetEvent(false);
...
2
votes
3answers
298 views
Producer Consumer With AutoResetEvent
I'm trying to use the producer consumer pattern to process and save some data. I'm using AutoResetEvent for signalling between the two therads here is the code I have
Here is the producer function
...
2
votes
4answers
2k views
Run Message Loop while waiting for WaitHandle
Is there any way to process all Windows messages while the UI thread is waiting on a WaitHandle or other threading primitive?
I realize that it could create very messy reentrancy problems; I want to ...
1
vote
2answers
127 views
Progress bar to show only during long operations
I am designing an application that fetches data from a sqlite database on the click of a button . I want to display a wait message or progress bar during the time of the fetch only if the process is ...
1
vote
6answers
1k views
What is the difference between Thread.Sleep(timeout) and ManualResetEvent.Wait(timeout)?
Both Thread.Sleep(timeout) and resetEvent.Wait(timeout) cause execution to pause for at least timeout milliseconds, so is there a difference between them? I know that Thread.Sleep causes the thread to ...
1
vote
5answers
456 views
Multi-Threading - waiting for all threads to be signalled
I have scenarios where I need a main thread to wait until every one of a set of possible more than 64 threads have completed their work, and for that I wrote the following helper utility, (to avoid ...
1
vote
2answers
1k views
My EventWaitHandle says “Access to the path is denied”, but its not
Quick summary with what I now know
I've got an EventWaitHandle that I created and then closed. When I try to re-create it with this ctor, an "Access to the path ... is denied" exception is thrown. ...
0
votes
3answers
129 views
Multithreading: WaitAll doesn't wait as expected
I have a thread that is calling two separate threads to do somework. Whenever any of the jobs is finished a Waithandle.Set(0 is called and at the end of the parent worker thread I wanted to WaitAll ...
0
votes
2answers
65 views
How to substitute at runtime the WaitHandle that a thread should wait on
I'm wondering how to safely change at runtime the EventWaitHandle that a thread should wait on.
Suppose for instance that there are two threads (A and C) that are synchronized through ...
0
votes
2answers
91 views
Server multithreading overkill?
I'm creating a server-type application at the moment which will do the usual listening for connections from external clients and, when they connect, handle requests, etc.
At the moment, my ...
0
votes
2answers
1k views
WaitHandle.WaitAny() & WaitHandle.WaitAll() usage problem
My application is not exiting properly. I am just trying to print the total number of connections, after that waiting for all the upload operations to complete, and then quit gracefully.
Below is the ...