Got rid of most using directives. Ported tests to python.
[invirt/third/libt4.git] / rpc / fifo.h
index f8a7224..dfb4d05 100644 (file)
@@ -37,8 +37,8 @@ class fifo {
         }
 
     private:
-        list<T> q_;
-        mutex m_;
+        std::list<T> q_;
+        std::mutex m_;
         cond non_empty_c_; // q went non-empty
         cond has_space_c_; // q is not longer overfull
         size_t max_; // maximum capacity of the queue, block enq threads if exceeds this limit