Click here to Skip to main content
15,891,867 members
Articles / Programming Languages / C++

A heap or shared memory based mutex pool manager

Rate me:
Please Sign up or sign in to vote.
3.41/5 (14 votes)
24 Sep 2006CPOL3 min read 35.5K   482   19  
An article on a mutex pool manager based on heap or shared memory.
#pragma once

#include "Common.h"

namespace STK
{
template <class T> 
class CAutoLock
{
public:
    CAutoLock(T *pLock)
    {
        if (pLock)
        {
            m_pLock = pLock;
            m_pLock->Lock(INFINITE);    
        }
    }

    virtual ~CAutoLock()
    {
        if (m_pLock)
        {
            m_pLock->Unlock();    
            m_pLock = NULL;
        }
    }

private:
    T* m_pLock;
};
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
Email: fxu_36@hotmail.com

Comments and Discussions