diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-01-28 14:58:30 +0100 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-02-15 11:12:54 -0800 |
commit | 5758533839a411906f70e29975a9e9ad2926fe89 (patch) | |
tree | 1f67b3e3328e0d872ed937a02f778ebcc3ec7822 /host/lib/usrp/b200/b200_impl.hpp | |
parent | 3d726342ff5f0eef8c82496c0d0df771c715cfd0 (diff) | |
download | uhd-5758533839a411906f70e29975a9e9ad2926fe89.tar.gz uhd-5758533839a411906f70e29975a9e9ad2926fe89.tar.bz2 uhd-5758533839a411906f70e29975a9e9ad2926fe89.zip |
b200_cores: Replace usage of boost::mutex with std::mutex
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.hpp')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/lib/usrp/b200/b200_impl.hpp b/host/lib/usrp/b200/b200_impl.hpp index 3c562f8b3..95fbe6ad2 100644 --- a/host/lib/usrp/b200/b200_impl.hpp +++ b/host/lib/usrp/b200/b200_impl.hpp @@ -38,6 +38,7 @@ #include <uhdlib/usrp/common/adf4001_ctrl.hpp> #include <boost/assign.hpp> #include <boost/weak_ptr.hpp> +#include <mutex> static const uint8_t B200_FW_COMPAT_NUM_MAJOR = 8; static const uint8_t B200_FW_COMPAT_NUM_MINOR = 0; @@ -149,7 +150,7 @@ private: boost::weak_ptr<uhd::rx_streamer> _rx_streamer; boost::weak_ptr<uhd::tx_streamer> _tx_streamer; - boost::mutex _transport_setup_mutex; + std::mutex _transport_setup_mutex; //async ctrl + msgs uhd::msg_task::sptr _async_task; |