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.cc
diff --git
a/rpc/poll_mgr.cc
b/rpc/poll_mgr.cc
index
d29abd2
..
83289a8
100644
(file)
--- a/
rpc/poll_mgr.cc
+++ b/
rpc/poll_mgr.cc
@@
-7,6
+7,8
@@
#include <sys/epoll.h>
#endif
+using std::vector;
+
aio_callback::~aio_callback() {}
poll_mgr poll_mgr::shared_mgr;
@@
-33,7
+35,7
@@
class SelectAIO : public wait_manager {
fd_set rfds_, wfds_;
int highfds_;
file_t pipe_[2];
- mutex m_;
+ std::mutex m_;
};
#ifdef __linux__