2

我需要在包含多个线程的应用程序中使用信号量。我的使用可能是一个常见的场景,但我坚持使用 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.
}

我将不胜感激这方面的任何帮助。

4

1 回答 1

6

听起来你真的不需要信号量 - 你只需要一个AutoResetEvent. 您的“发布”线程只会调用Set,而等待线程会调用WaitOne

或者你可以只使用Monitor.WaitMonitor.Pulse...

于 2013-08-06T08:55:53.137 回答