Tagged Questions
4
votes
6answers
755 views
For a windows service, which is better, a wait-spin or a timer?
This question about Timers for windows services got me thinking:
Say I have (and I do) a windows service thats waiting on a WaitHandle and when woken, it dives into a wait-spin like I have shown ...
3
votes
2answers
60 views
What does the exit context mean for a WaitHandle.WaitOne mean?
I'm trying to use a mutex to protect access to some hardware from multiple threads, but I'm confused as to what the exitContext parameter means / does:
public virtual bool WaitOne (
int ...
3
votes
3answers
279 views
How do I unblock threads which have called the WaitOne method on an AutoResetEvent object?
Below is a class having the method 'SomeMethod' that illustrates my problem.
class SomeClass
{
AutoResetEvent theEvent = new AutoResetEvent(false);
// more member declarations
public ...
3
votes
1answer
410 views
Unit testing WaitHandler.WaitAll
Is there a way to unit test WaitHandle.WaitAll() when using Visual Studio's built-in unit testing solution. When I try and run a test that uses this function within Visual Studio the test fails and ...
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
1answer
173 views
A robust method of tracking failed workers with ThreadPool
I'm looking for a good method of tracking (counting) which workers have failed when queued with a Threadpool and using WaitHandle.WaitAll() for all threads to finish.
Is Interlocking a counter a good ...
2
votes
1answer
535 views
Is mutex correctly implemented and how do I dispose it?
I am reviewing some code and one of the code analysis (fxCop) warnings has gotten me very confused. The code implements a few mutex's by creating variables at the start of the class, similar to this:
...
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
61 views
Can ManualResetEvent be used to supersede a boolean
This is admittedly an unusual question; I would never recommend replacing a boolean with a ManualResetEvent in typical .NET development. In this case, I already need a ManualResetEvent to indicate ...
0
votes
1answer
77 views
Wrap an AutoResetEvent object in a restricted WaitHandle?
I've built a library that launches a thread to do it's thing and returns a WaitHandle to the caller.
Looking at a bug report, I suspect the code that's calling my library is taking the returned ...
0
votes
3answers
246 views
Conditional periodic timer using wait handles
I need a timer equivalent which will periodically execute some specific actions (e.g. updating some progress in the database or checking for new Jobs to execute in a database).
These actions are ...
0
votes
1answer
50 views
.net - IPC - “queue” the oldest process' work to fire first
I have a .Net 2.0 application that processes data, generates Crystal Reports, and then sends the rendered output to a printer. This application is most-of-the-time fired from a Win32 application ...