Click here to Skip to main content
15,867,308 members
Articles / Programming Languages / C#
Article

A simple in-process semaphore using C#

Rate me:
Please Sign up or sign in to vote.
4.44/5 (26 votes)
10 Jul 20032 min read 211.2K   3.7K   21   14
Creating a semaphore to limit a given number of threads accessing a resource in a process.

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.

C#
// 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.

C#
// 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.

C#
// 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.

C#
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.

C#
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:

C#
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


Written By
Architect
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
chait30116-Feb-14 12:45
chait30116-Feb-14 12:45 
GeneralSemaphore class did not exist in 2003. Pin
Sriram Chitturi17-Feb-14 4:04
Sriram Chitturi17-Feb-14 4:04 
GeneralRe: Semaphore class did not exist in 2003. Pin
chait30119-Feb-14 10:56
chait30119-Feb-14 10:56 
Questionhmmm.... which ones better?? Pin
Jeff_____M___12-May-09 6:44
Jeff_____M___12-May-09 6:44 
AnswerRe: hmmm.... which ones better?? Pin
Chris@TCP29-May-10 10:46
Chris@TCP29-May-10 10:46 
GeneralExcellent implementation of Semaphore Pin
Driesens6-Jul-07 5:31
Driesens6-Jul-07 5:31 
GeneralPassing info to a thread Pin
pendarric26-Aug-03 16:11
pendarric26-Aug-03 16:11 
GeneralRe: Passing info to a thread Pin
zoltix9-Sep-03 22:21
zoltix9-Sep-03 22:21 
GeneralGood Job! Pin
fbougadou14-Jul-03 5:25
fbougadou14-Jul-03 5:25 
GeneralThere are some problems with this implementation Pin
scadaguy11-Jul-03 11:16
scadaguy11-Jul-03 11:16 
GeneralRe: There are some problems with this implementation Pin
Daniel Turini11-Jul-03 23:24
Daniel Turini11-Jul-03 23:24 
GeneralRe: There are some problems with this implementation Pin
Sriram Chitturi12-Jul-03 7:04
Sriram Chitturi12-Jul-03 7:04 
GeneralRe: There are some problems with this implementation Pin
RahulGade19-Nov-04 21:23
RahulGade19-Nov-04 21:23 
GeneralProblem in multithread Pin
Member 918701115-Feb-13 22:42
Member 918701115-Feb-13 22:42 

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

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