Click here to Skip to main content
Licence 
First Posted 10 Jul 2003
Views 136,637
Downloads 2,066
Bookmarked 18 times

A simple in-process semaphore using C#

By Sriram Chitturi | 10 Jul 2003
Creating a semaphore to limit a given number of threads accessing a resource in a process.
3 votes, 13.6%
1
2 votes, 9.1%
2
2 votes, 9.1%
3
4 votes, 18.2%
4
11 votes, 50.0%
5
4.32/5 - 22 votes
3 removed
μ 3.96, σa 2.63 [?]

Introduction

Many times we are limited to use a controlled number of threads to access the resources at our disposal. This article describes how to create a semaphore (to be used inside a single process) and control the number of threads. If you want to use a global semaphore to control threads across processes, then you have to use Windows semaphores.

Semaphore code

The Semaphore.cs file contains the code which controls the threads and can be used by itself in any project. The constructor takes the number of threads to be controlled as the parameter and creates an array of mutexes which are used to block the threads. WaitHandle.WaitAny() is used to wait on this array of mutexes.

        // array of mutex to block the threads
        private Mutex[] m_mutex;

        // place holder to store thread to mutex mapping
        private Thread[] m_threadIds;

        // number of threads allowed to access the resources
        private int m_threadLimit;

        // contructor creates the mutexes
        public Semaphore(int threadLimit)
        {
            m_threadLimit = threadLimit;
            m_mutex = new Mutex[m_threadLimit];
            m_threadIds = new Thread[m_threadLimit];
            for (int i=0; i<m_threadLimit; i++)
            {
                m_mutex[i] = new Mutex();
                m_threadIds[i] = null;
            }
        }

It is important to map the current thread with the mutex it is blocking, it will be used to release the mutex when Semaphore.Release() is called on the semaphore. A simple Thread array is used to map the calling thread to the mutex locked by the thread, by calling Thread.CurrentThread in the code below.

        // if there is a timeout then WaitHandle.WaitTimeout is returned
        // calling thread should check for this
        public int Wait()
        {
            int index = WaitHandle.WaitAny(m_mutex);
            if (index != WaitHandle.WaitTimeout)
                m_threadIds[index] = Thread.CurrentThread;
            return index;
        }

When a release is called on the semaphore, the locking thread is searched in the array and ReleaseMutex() on the corresponding mutex is called to let the next thread.

        // release the mutex locked by the thread
        public void Release()
        {
            for (int i=0; i<m_threadLimits; i++)
            {
                if (m_threadIds[i] == Thread.CurrentThread)
                {
                    m_mutex[i].ReleaseMutex();
                    break;
                }
            }
        }

Testing the code

To test the semaphore code, a simple form is created with a button, it's purpose - to create a thread when pressed. A static instance of the semaphore is created to be shared by all the threads in the form.

       private static Semaphore m_semaphore = new Semaphore(5);

A static method is created which is used to kick off threads. The method waits on the semaphore. At any point, only the number of maximum threads mentioned will be allowed to pass beyond this point to display the message box.

        public static void TestThread()
        {
            m_semaphore.Wait();
            MessageBox.Show("I am on a new thread");
            m_semaphore.Release();
        }

The button click event is trapped and a new thread is created every time the button is pressed as shown below:

        private void StartThread_Click(object sender, System.EventArgs e)
        {
            Thread t = new Thread(new ThreadStart(TestThread));
            t.Start();
        }

As we press the button, we can see that only 5 message boxes are shown, demonstrating that only 5 threads are allowed by the semaphore.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Sriram Chitturi

Architect
Philegance LLC
United States United States

Member


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Questionhmmm.... which ones better?? PinmemberJeff_____M___7:44 12 May '09  
AnswerRe: hmmm.... which ones better?? PinmemberChris@TCP11:46 29 May '10  
GeneralExcellent implementation of Semaphore PinmemberDriesens6:31 6 Jul '07  
GeneralPassing info to a thread Pinmemberpendarric17:11 26 Aug '03  
GeneralRe: Passing info to a thread Pinmemberzoltix23:21 9 Sep '03  
GeneralGood Job! Pinmemberfbougadou6:25 14 Jul '03  
GeneralThere are some problems with this implementation PinmemberBrian Gideon12:16 11 Jul '03  
GeneralRe: There are some problems with this implementation PinmemberDaniel Turini0:24 12 Jul '03  
GeneralRe: There are some problems with this implementation PinmemberSriram Chitturi8:04 12 Jul '03  
GeneralRe: There are some problems with this implementation PinmemberRahulGade22:23 19 Nov '04  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120206.1 | Last Updated 11 Jul 2003
Article Copyright 2003 by Sriram Chitturi
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid