uhd/host/lib/usrp/dboard_iface.cpp
Martin Braun 0303f1ed55 lib: Purge all references to boost::this_thread::sleep()
Replace with std::this_thread::sleep_for().
2018-04-30 17:10:26 -07:00

23 lines
677 B
C++

//
// Copyright 2016 Ettus Research
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhd/usrp/dboard_iface.hpp>
#include <chrono>
#include <thread>
using namespace uhd::usrp;
void dboard_iface::sleep(const boost::chrono::nanoseconds& time)
{
//nanosleep is not really accurate in userland and it is also not very
//cross-platform. So just sleep for the minimum amount of time in us.
if (time < boost::chrono::microseconds(1)) {
std::this_thread::sleep_for(std::chrono::microseconds(1));
} else {
std::this_thread::sleep_for(std::chrono::microseconds(time.count()));
}
}