Skip to content

Commit

Permalink
cond: cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
Sage Weil committed Jul 6, 2012
1 parent da7a328 commit 1316f86
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/common/Cond.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class Cond {
assert(waiter_mutex == NULL ||
waiter_mutex->is_locked());

//int r = pthread_cond_signal(&_c);
int r = pthread_cond_broadcast(&_c);
return r;
}
Expand All @@ -103,7 +102,6 @@ class Cond {
assert(waiter_mutex == NULL ||
waiter_mutex->is_locked());

//int r = pthread_cond_signal(&_c);
int r = pthread_cond_broadcast(&_c);
return r;
}
Expand Down

0 comments on commit 1316f86

Please sign in to comment.