From 0303f1ed558b21e40f80c388b096432b4bf6e883 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 26 Apr 2018 09:30:48 -0700 Subject: lib: Purge all references to boost::this_thread::sleep() Replace with std::this_thread::sleep_for(). --- host/lib/usrp/usrp2/usrp2_iface.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'host/lib/usrp/usrp2/usrp2_iface.cpp') diff --git a/host/lib/usrp/usrp2/usrp2_iface.cpp b/host/lib/usrp/usrp2/usrp2_iface.cpp index a3d1bc390..c8283c500 100644 --- a/host/lib/usrp/usrp2/usrp2_iface.cpp +++ b/host/lib/usrp/usrp2/usrp2_iface.cpp @@ -16,7 +16,6 @@ #include #include #include -#include #include //used for htonl and ntohl #include #include @@ -26,6 +25,8 @@ #include #include #include +#include +#include #include using namespace uhd; @@ -118,7 +119,7 @@ public: //re-lock in task this->pokefw(U2_FW_REG_LOCK_TIME, this->get_curr_time()); //sleep for a bit - boost::this_thread::sleep(boost::posix_time::milliseconds(1500)); + std::this_thread::sleep_for(std::chrono::milliseconds(1500)); } uint32_t get_curr_time(void){ -- cgit v1.2.3