I'm reading Stephen Toub's Patterns of Parallel Programming.

On page 53 he describes some Producer/Consumer patterns

One below using semaphores

class BlockingQueue<T>
{
   private Queue<T> _queue = new Queue<T>();
   private SemaphoreSlim _semaphore = new SemaphoreSlim(0, int.MaxValue);
   public void Enqueue(T data)
   {
       if (data == null) throw new ArgumentNullException("data");
       lock (_queue) _queue.Enqueue(data);
       _semaphore.Release();
   }

   public T Dequeue()
   {
       _semaphore.Wait();
       lock (_queue) return _queue.Dequeue();
    }
 }

One below using Monitors

class BlockingQueue<T>
{
    private Queue<T> _queue = new Queue<T>();
    public void Enqueue(T data)
    {
        if (data == null) throw new ArgumentNullException("data");
        lock (_queue)
        {
            _queue.Enqueue(data);
            Monitor.Pulse(_queue);
         }
     }

     public T Dequeue()
     {
        lock (_queue)
        {
           while (_queue.Count == 0) Monitor.Wait(_queue);
           return _queue.Dequeue();
     }
   }
}

I'm not sure when I have to lock my objects. In the semaphore example he dos not out a lock around the semaphore but in the Monitor example he encapsulates a lock aorund it?

Any clarification is appreciated.

link|improve this question

A lock (aka Monitor) has thread affinity, a semaphore does not. Very big difference. Use what works for you. – Hans Passant Dec 4 '11 at 23:08
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.