projects
/
invirt/third/libt4.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
More dependency check-ups
[invirt/third/libt4.git]
/
rpc
/
thr_pool.h
diff --git
a/rpc/thr_pool.h
b/rpc/thr_pool.h
index
94ce237
..
5b95cba
100644
(file)
--- a/
rpc/thr_pool.h
+++ b/
rpc/thr_pool.h
@@
-4,7
+4,7
@@
#include "types.h"
#include "fifo.h"
-typedef std::function<void()> job_t;
+typedef function<void()> job_t;
class ThrPool {
public:
@@
-18,7
+18,7
@@
class ThrPool {
bool blockadd_;
fifo<job_t> jobq_;
- std::vector<std::thread> th_;
+ vector<thread> th_;
void do_worker();
};