diff options
author | Ciro Nishiguchi <ciro.nishiguchi@ni.com> | 2019-08-06 14:40:47 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-10-22 16:18:46 -0700 |
commit | 60a70f7142047b44cfec6d58ba77f5c7a81f1750 (patch) | |
tree | 445d5228ff98c985cdef4c9bd06e3595948aeace /host/examples/test_messages.cpp | |
parent | 14c5812fd773108a75f568d11d9ae4d833de1aeb (diff) | |
download | uhd-60a70f7142047b44cfec6d58ba77f5c7a81f1750.tar.gz uhd-60a70f7142047b44cfec6d58ba77f5c7a81f1750.tar.bz2 uhd-60a70f7142047b44cfec6d58ba77f5c7a81f1750.zip |
examples: remove thread priority elevation
Remove UHD call to elevate thread priority to realtime. Setting all
threads to the same realtime priority can cause the threads to not share
access to the network interface fairly, which adversely affects
operation of the worker threads in UHD.
Diffstat (limited to 'host/examples/test_messages.cpp')
-rw-r--r-- | host/examples/test_messages.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/host/examples/test_messages.cpp b/host/examples/test_messages.cpp index 4d4771900..0d0e958b8 100644 --- a/host/examples/test_messages.cpp +++ b/host/examples/test_messages.cpp @@ -275,8 +275,6 @@ void flush_recv(uhd::rx_streamer::sptr rx_stream) int UHD_SAFE_MAIN(int argc, char* argv[]) { - uhd::set_thread_priority_safe(); - // variables to be set by po std::string args; size_t ntests; |