X-Git-Url: http://xvm.mit.edu/gitweb/invirt/third/libt4.git/blobdiff_plain/26ade07ab0e62b98b452fbbd18edba0450035e35..c06ef44e7af1571710fd31dd0ab068dd77b1eb2d:/rpc/fifo.h diff --git a/rpc/fifo.h b/rpc/fifo.h index f8a7224..dfb4d05 100644 --- a/rpc/fifo.h +++ b/rpc/fifo.h @@ -37,8 +37,8 @@ class fifo { } private: - list q_; - mutex m_; + std::list 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