X-Git-Url: http://xvm.mit.edu/gitweb/invirt/third/libt4.git/blobdiff_plain/f0dcb6b97d6d40f67698d1f71ac26970f1776f82..869c0cc91d8f6b2bb80026616372d16450b64d9f:/rpc/thr_pool.h?ds=sidebyside diff --git a/rpc/thr_pool.h b/rpc/thr_pool.h index df11f20..9525032 100644 --- a/rpc/thr_pool.h +++ b/rpc/thr_pool.h @@ -4,7 +4,7 @@ #include "types.h" #include "fifo.h" -typedef function job_t; +typedef std::function job_t; class thread_pool { public: @@ -18,7 +18,7 @@ class thread_pool { bool blockadd_; fifo jobq_; - vector th_; + std::vector th_; void do_worker(); };