![]() |
|
|||
File indexing completed on 2025-08-03 08:20:53
0001 #include <pthread.h> 0002 0003 class pMutex { //++CINT 0004 0005 public: 0006 0007 pMutex(const int lockstatus = 0); 0008 virtual ~pMutex(); 0009 0010 virtual int Lock(); 0011 virtual int tryLock(); 0012 virtual int Release(); 0013 0014 private: 0015 0016 pthread_mutex_t M; 0017 0018 0019 };
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |