我需要在包含多个线程的应用程序中使用信号量。我的使用可能是一个常见的场景,但我坚持使用 API。
在我的使用中,信号量可以从多个位置发布,而只有一个线程在等待信号量。
现在,我要求信号量是二进制信号量,即,我需要确保在多个线程同时发布到信号量的情况下,信号量计数保持为 1,并且不会引发错误。我怎样才能做到这一点。
简而言之,我需要以下代码才能工作。
private static Semaphore semaphoreResetMapView = new Semaphore(0, 1); // Limiting the max value of semaphore to 1.
void threadWait(){
while (true){
semaphoreResetMapView.WaitOne();
<code>
}
}
void Main(){
tThread = new Thread(threadWait);
tThread.Start();
semaphoreResetMapView.Release(1);
semaphoreResetMapView.Release(1);
semaphoreResetMapView.Release(1); // Multiple Releases should not throw an error. Rather saturate the value of semaphore to 1.
}
我将不胜感激这方面的任何帮助。