diff options
author | Balint Seeber <balint@ettus.com> | 2013-11-19 13:30:21 -0800 |
---|---|---|
committer | Balint Seeber <balint@ettus.com> | 2013-11-19 13:30:21 -0800 |
commit | 48ab2a971e73e46a7165ca5ebfff9a946fd5e981 (patch) | |
tree | d3b07bd21a7327d35022ab5efe35d8298975cbe4 /host/lib/usrp/b200/b200_impl.cpp | |
parent | 01cfe2118f0bd72719809d2539c61df46a164fec (diff) | |
parent | 8a78802c10fa64af5d1ec7cf39ce389f003cce11 (diff) | |
download | uhd-48ab2a971e73e46a7165ca5ebfff9a946fd5e981.tar.gz uhd-48ab2a971e73e46a7165ca5ebfff9a946fd5e981.tar.bz2 uhd-48ab2a971e73e46a7165ca5ebfff9a946fd5e981.zip |
Merge remote-tracking branch 'origin/b200/dtor-master' into b200/kitchen_sink
Diffstat (limited to 'host/lib/usrp/b200/b200_impl.cpp')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 0da388b93..66ab813c2 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -252,7 +252,7 @@ b200_impl::b200_impl(const device_addr_t &device_addr) //////////////////////////////////////////////////////////////////// _async_task_data.reset(new AsyncTaskData()); _async_task_data->async_md.reset(new async_md_type(1000/*messages deep*/)); - _async_task = uhd::task::make(boost::bind(&b200_impl::handle_async_task, this, _ctrl_transport, _async_task_data)); + _async_task = uhd::msg_task::make(boost::bind(&b200_impl::handle_async_task, this, _ctrl_transport, _async_task_data)); //////////////////////////////////////////////////////////////////// // Local control endpoint @@ -474,7 +474,7 @@ b200_impl::b200_impl(const device_addr_t &device_addr) b200_impl::~b200_impl(void) { - UHD_SAFE_CALL + UHD_SAFE_CALL ( _async_task.reset(); ) |