diff options
author | Philip Balister <philip@opensdr.com> | 2010-10-20 20:00:09 -0400 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-10-20 20:00:09 -0400 |
commit | 635440c5990e7a27fdb38f694123258633e85427 (patch) | |
tree | 603ff2312dd612ea7759432f51ffb7a6c7db3448 /host/examples | |
parent | 6b203950d9583ab882628311402e26cf40838aa0 (diff) | |
parent | e0c48ba5cc1033cd330e2ce73ceb03740923e954 (diff) | |
download | uhd-635440c5990e7a27fdb38f694123258633e85427.tar.gz uhd-635440c5990e7a27fdb38f694123258633e85427.tar.bz2 uhd-635440c5990e7a27fdb38f694123258633e85427.zip |
Merge branch 'master' of ettus.sourcerepo.com:ettus/uhdpriv into usrp_e_mmap_b2
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/test_async_messages.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/host/examples/test_async_messages.cpp b/host/examples/test_async_messages.cpp index 0a5c076ea..e4a996ef5 100644 --- a/host/examples/test_async_messages.cpp +++ b/host/examples/test_async_messages.cpp @@ -26,8 +26,6 @@ namespace po = boost::program_options; -static const size_t async_to_ms = 100; - /*! * Test that no messages are received: * Send a burst of many samples that will fragment internally. @@ -52,7 +50,7 @@ void test_no_async_message(uhd::usrp::single_usrp::sptr sdev){ ); uhd::async_metadata_t async_md; - if (dev->recv_async_msg(async_md, async_to_ms)){ + if (dev->recv_async_msg(async_md)){ std::cout << boost::format( "failed:\n" " Got unexpected event code 0x%x.\n" @@ -88,7 +86,7 @@ void test_underflow_message(uhd::usrp::single_usrp::sptr sdev){ ); uhd::async_metadata_t async_md; - if (not dev->recv_async_msg(async_md, async_to_ms)){ + if (not dev->recv_async_msg(async_md)){ std::cout << boost::format( "failed:\n" " Async message recv timed out.\n" @@ -135,7 +133,7 @@ void test_time_error_message(uhd::usrp::single_usrp::sptr sdev){ ); uhd::async_metadata_t async_md; - if (not dev->recv_async_msg(async_md, async_to_ms)){ + if (not dev->recv_async_msg(async_md)){ std::cout << boost::format( "failed:\n" " Async message recv timed out.\n" |