Got rid of most using directives. Ported tests to python.
[invirt/third/libt4.git] / rpc / poll_mgr.h
index 44ac9f8..d8cfd20 100644 (file)
@@ -33,10 +33,10 @@ class poll_mgr {
         void wait_loop();
 
     private:
-        mutex m_;
+        std::mutex m_;
         cond changedone_c_;
 
-        map<int, aio_callback *> callbacks_;
+        std::map<int, aio_callback *> callbacks_;
         unique_ptr<class wait_manager> aio_;
         bool pending_change_=false, shutdown_=false;