projects
/
invirt/third/libt4.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Got rid of most using directives. Ported tests to python.
[invirt/third/libt4.git]
/
rpc
/
poll_mgr.h
diff --git
a/rpc/poll_mgr.h
b/rpc/poll_mgr.h
index
44ac9f8
..
d8cfd20
100644
(file)
--- a/
rpc/poll_mgr.h
+++ b/
rpc/poll_mgr.h
@@
-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;