Another checkpoint of initial cut at thread pool manager for thrift and related concurrency classes.
Added TimerManager - I can't live without one after all.
Added Util - handy place for common time operations et al.
Initial test code
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664722 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/lib/cpp/src/concurrency/Monitor.h b/lib/cpp/src/concurrency/Monitor.h
index 82544f1..13dec18 100644
--- a/lib/cpp/src/concurrency/Monitor.h
+++ b/lib/cpp/src/concurrency/Monitor.h
@@ -1,5 +1,5 @@
-#if !defined(_concurrency_mutex_h_)
-#define _concurrency_mutex_h_ 1
+#if !defined(_concurrency_Monitor_h_)
+#define _concurrency_Monitor_h_ 1
namespace facebook { namespace thrift { namespace concurrency {
@@ -11,7 +11,7 @@
methods without needing to cast away constness or change to non-const signatures.
@author marc
- @version $Id$ */
+ @version $Id:$ */
class Monitor {
@@ -56,4 +56,4 @@
}}} // facebook::thrift::concurrency
-#endif // !defined(_concurrency_mutex_h_)
+#endif // !defined(_concurrency_Monitor_h_)