|
From: <sv...@va...> - 2009-05-31 11:54:17
|
Author: bart
Date: 2009-05-31 12:54:14 +0100 (Sun, 31 May 2009)
New Revision: 10178
Log:
Fixed a compiler warning.
Modified:
trunk/drd/tests/tsan_thread_wrappers_pthread.h
Modified: trunk/drd/tests/tsan_thread_wrappers_pthread.h
===================================================================
--- trunk/drd/tests/tsan_thread_wrappers_pthread.h 2009-05-31 11:53:39 UTC (rev 10177)
+++ trunk/drd/tests/tsan_thread_wrappers_pthread.h 2009-05-31 11:54:14 UTC (rev 10178)
@@ -569,7 +569,7 @@
public:
explicit BlockingCounter(int initial_count) :
count_(initial_count) {}
- bool DecrementCount() {
+ void DecrementCount() {
MutexLock lock(&mu_);
count_--;
}
|