Public Member Functions | |
XLockRootGuard () | |
~XLockRootGuard () | |
void | Unlock () |
Public Attributes | |
bool | fIsLocked |
Definition at line 51 of file xmlServer.cxx.
XLockRootGuard::XLockRootGuard | ( | ) | [inline] |
Definition at line 56 of file xmlServer.cxx.
References fIsLocked.
00057 { 00058 TThread::Lock(); 00059 fIsLocked = true; 00060 }
XLockRootGuard::~XLockRootGuard | ( | ) | [inline] |
void XLockRootGuard::Unlock | ( | ) | [inline] |
Definition at line 68 of file xmlServer.cxx.
References fIsLocked.
Referenced by xroot_server_thread(), and ~XLockRootGuard().
00069 { 00070 fIsLocked = false; 00071 TThread::UnLock(); 00072 };
Definition at line 54 of file xmlServer.cxx.
Referenced by Unlock(), XLockRootGuard(), and ~XLockRootGuard().