I've used a thread managed waiter.
SyncLock http://msdn.microsoft.com/en-us/library/3a86s51t%28v=vs.71%29.aspx
But now, I wanted to have a timeout and found the WaitOne.
WaitOne http://msdn.microsoft.com/en-us/library/system.threading.waithandle.waitone.aspx which supports a simple timeout.
But it does not work anymore. It can be that the fault is somewhere else in the code. My main question to you is, is there a difference between using SyncLock
and WaitOne
as basic waiter flag?
Regards
From MSDN http://msdn.microsoft.com/en-us/library/ms173179.aspx