X-Git-Url: http://xvm.mit.edu/gitweb/invirt/third/libt4.git/blobdiff_plain/26ade07ab0e62b98b452fbbd18edba0450035e35..06282fd37814c4a9d53bca089b048709b368f5b3:/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