Tagged Questions
3
votes
2answers
72 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 ...
2
votes
1answer
551 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:
...
0
votes
0answers
96 views
Using pthread_cond_timedwait to print a specified time
Hey, I've got just a small problem related to pthread_cond_timedwait. I've tried implementing it into this piece of code. I can't get the arguments right for timedwait, because I am not too sure what ...