#ifndef ROOT_TPosixMutex
#define ROOT_TPosixMutex
#ifndef ROOT_TMutexImp
#include "TMutexImp.h"
#endif
#ifndef __CINT__
#include <pthread.h>
#else
struct pthread_mutex_t;
#endif
class TPosixMutex : public TMutexImp {
friend class TPosixCondition;
private:
pthread_mutex_t fMutex;
public:
TPosixMutex();
virtual ~TPosixMutex();
Int_t Lock();
Int_t UnLock();
Int_t TryLock();
ClassDef(TPosixMutex,0)
};
#endif
Last change: Wed Jun 25 08:50:51 2008
Last generated: 2008-06-25 08:50
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.