Refactoring
[invirt/third/libt4.git] / rpc / thr_pool.h
index 5950a9c..28c5236 100644 (file)
@@ -6,10 +6,10 @@
 
 typedef function<void()> job_t;
 
-class ThrPool {
+class thread_pool {
     public:
-        ThrPool(size_t sz, bool blocking=true);
-        ~ThrPool();
+        thread_pool(size_t sz, bool blocking=true);
+        ~thread_pool();
 
         bool addJob(const job_t &j);