diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 09:25:22 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2018-01-07 09:25:22 +0100 |
commit | 37b4c4591d6835c4b88ded16286d6f4145aea367 (patch) | |
tree | c3ef0c2bb6f1d4807fe20b1de033a518a9007f3c /src/TII.cpp | |
parent | 23b369e1145c5652778345827b7df9c33e09d0e8 (diff) | |
download | dabmod-37b4c4591d6835c4b88ded16286d6f4145aea367.tar.gz dabmod-37b4c4591d6835c4b88ded16286d6f4145aea367.tar.bz2 dabmod-37b4c4591d6835c4b88ded16286d6f4145aea367.zip |
Replace boost lock by std lock in TII
Diffstat (limited to 'src/TII.cpp')
-rw-r--r-- | src/TII.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/TII.cpp b/src/TII.cpp index 89cd6d0..3c5823b 100644 --- a/src/TII.cpp +++ b/src/TII.cpp @@ -2,7 +2,7 @@ Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2017 + Copyright (C) 2018 Matthias P. Braendli, matthias.braendli@mpb.li http://opendigitalradio.org @@ -187,7 +187,7 @@ int TII::process(Buffer* dataIn, Buffer* dataOut) memset(dataOut->getData(), 0, dataOut->getLength()); if (m_conf.enable and m_insert) { - boost::mutex::scoped_lock lock(m_enabled_carriers_mutex); + std::lock_guard<std::mutex> lock(m_enabled_carriers_mutex); complexf* in = reinterpret_cast<complexf*>(dataIn->getData()); complexf* out = reinterpret_cast<complexf*>(dataOut->getData()); @@ -231,7 +231,7 @@ void TII::enable_carrier(int k) { void TII::prepare_pattern() { int comb = m_conf.comb; // Convert from unsigned to signed - boost::mutex::scoped_lock lock(m_enabled_carriers_mutex); + std::lock_guard<std::mutex> lock(m_enabled_carriers_mutex); // Clear previous pattern for (size_t i = 0; i < m_enabled_carriers.size(); i++) { |