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
/
fifo.h
diff --git
a/rpc/fifo.h
b/rpc/fifo.h
index
f8a7224
..
dfb4d05
100644
(file)
--- a/
rpc/fifo.h
+++ b/
rpc/fifo.h
@@
-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