Click here to Skip to main content
6,629,377 members and growing! (24,359 online)
Email Password   helpLost your password?
General Programming » Threads, Processes & IPC » Threading     Intermediate

A simple in-process semaphore using C#

By Sriram Chitturi

Creating a semaphore to limit a given number of threads accessing a resource in a process.
C#, Windows, .NET 1.0, .NET 1.1, Dev
Posted:10 Jul 2003
Views:106,219
Bookmarked:16 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
22 votes for this article.
Popularity: 5.08 Rating: 3.78 out of 5
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

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


Member

Occupation: Architect
Company: Philegance LLC
Location: United States United States

Other popular Threads, Processes & IPC articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 9 of 9 (Total in Forum: 9) (Refresh)FirstPrevNext
Generalhmmm.... which ones better?? PinmemberJeff_____M___7:44 12 May '09  
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    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 10 Jul 2003
Editor: Smitha Vijayan
Copyright 2003 by Sriram Chitturi
Everything else Copyright © CodeProject, 1999-2009
Web10 | Advertise on the Code Project