Changeset 3209 in Sophya for trunk/SophyaLib/SysTools
- Timestamp:
- Apr 10, 2007, 5:58:01 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/zthread.cc
r2955 r3209 197 197 \class SOPHYA::ZMutex 198 198 \ingroup SysTools 199 \brief Wrapper for Mutexobjects.199 \brief Wrapper for a pair of (Mutex,Cond.Var) objects. 200 200 201 201 This class implements an interface to the Mutual Exclusion objects … … 227 227 ZMutex::~ZMutex() 228 228 { 229 int rc; 230 rc = pthread_mutex_destroy(_mutx); 231 CheckSt(rc,"ZMutex::~ZMutex() Pb pthread_mutex_destroy"); 232 rc = pthread_cond_destroy(_condv); 233 CheckSt(rc,"ZMutex::~ZMutex() Pb pthread_cond_destry"); 229 234 delete _mutx; 230 235 delete _condv;
Note:
See TracChangeset
for help on using the changeset viewer.