Beispiel #1
0
 void curopGotLock(){
     Client * c = currentClient.get();
     assert(c);
     CurOp * co = c->curop();
     if ( co ){
         co->gotLock();
     }
 }
Beispiel #2
0
 void curopGotLock(Client *c) {
     verify(c);
     CurOp * co = c->curop();
     if ( co )
         co->gotLock();
 }
Beispiel #3
0
 void curopGotLock(Client *c) {
     assert(c);
     CurOp * co = c->curop();
     if ( co )
         co->gotLock();
 }