diff options
author | Josh Blum <josh@joshknows.com> | 2011-03-03 11:18:50 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-03-03 11:18:50 -0800 |
commit | f938ed7938021c10bb0a0ce47e6d40d10f89abc2 (patch) | |
tree | 0c6793bd4bd8ba0a03ee8d83a0b67e3fe231356c /host/lib/usrp/usrp2/io_impl.cpp | |
parent | b99c655d2ae52ee14e6430b175fe4849ccc0f0e7 (diff) | |
parent | 7aed95a658deb52404ba49774cfcecf96df654a8 (diff) | |
download | uhd-f938ed7938021c10bb0a0ce47e6d40d10f89abc2.tar.gz uhd-f938ed7938021c10bb0a0ce47e6d40d10f89abc2.tar.bz2 uhd-f938ed7938021c10bb0a0ce47e6d40d10f89abc2.zip |
Merge branch 'master' into next
Conflicts:
host/lib/usrp/usrp2/mboard_impl.cpp
host/lib/usrp/usrp2/usrp2_impl.cpp
Diffstat (limited to 'host/lib/usrp/usrp2/io_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/io_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/io_impl.cpp b/host/lib/usrp/usrp2/io_impl.cpp index 082d77d3e..27a32d7a8 100644 --- a/host/lib/usrp/usrp2/io_impl.cpp +++ b/host/lib/usrp/usrp2/io_impl.cpp @@ -83,10 +83,10 @@ public: * \return false on timeout */ UHD_INLINE bool check_fc_condition(seq_type seq, double timeout){ - boost::this_thread::disable_interruption di; //disable because the wait can throw boost::unique_lock<boost::mutex> lock(_fc_mutex); _last_seq_out = seq; if (this->ready()) return true; + boost::this_thread::disable_interruption di; //disable because the wait can throw return _fc_cond.timed_wait(lock, to_time_dur(timeout), _ready_fcn); } |