unlock.cc (254B)
1 #include "mutextree" 2 3 void MutexTree::unlock(void *o) { 4 # ifdef DEBUG 5 debugmsg("Mutex: unlocking object: " << o << '\n'); 6 # endif 7 nodeunlock(o, _root); 8 # ifdef DEBUG 9 debugmsg("Mutex: object " << o << " unlocked\n"); 10 # endif 11 }