X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fsigsession.cpp;h=84e1d48fdf19b0f62747745e0d60215d8330c066;hb=3b68d03ddae96edb38a80f31bf6a990bde21cd1d;hp=1d13de2a7fad3f786cb7f0e8dce8e30c86138f4f;hpb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;p=pulseview.git diff --git a/pv/sigsession.cpp b/pv/sigsession.cpp index 1d13de2a..84e1d48f 100644 --- a/pv/sigsession.cpp +++ b/pv/sigsession.cpp @@ -39,8 +39,8 @@ #include "view/decodetrace.h" #include "view/logicsignal.h" -#include - +#include +#include #include #include @@ -48,9 +48,9 @@ #include using boost::function; -using boost::lock_guard; -using boost::mutex; using std::dynamic_pointer_cast; +using std::lock_guard; +using std::mutex; using std::list; using std::map; using std::set; @@ -188,7 +188,7 @@ void SigSession::start_capture(function error_handler) } // Begin the session - _sampling_thread = boost::thread( + _sampling_thread = std::thread( &SigSession::sample_thread_proc, this, _dev_inst, error_handler); }