USRP Hardware Driver and USRP Manual Version: 3.15.0.0-MacPorts-Release
UHD and USRP Manual
 
Loading...
Searching...
No Matches
thread.hpp
Go to the documentation of this file.
1//
2// Copyright 2010,2017 Ettus Research LLC
3// Copyright 2018 Ettus Research, a National Instruments Company
4//
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
7
8#ifndef INCLUDED_UHD_UTILS_THREAD_HPP
9#define INCLUDED_UHD_UTILS_THREAD_HPP
10
11#include <uhd/config.hpp>
12#include <boost/thread/thread.hpp>
13#include <string>
14
15namespace uhd {
16
17static const float default_thread_priority = float(0.5);
18
34 float priority = default_thread_priority, bool realtime = true);
35
42 float priority = default_thread_priority, bool realtime = true);
43
49UHD_API void set_thread_name(boost::thread* thread, const std::string& name);
50
51} // namespace uhd
52
53#endif /* INCLUDED_UHD_UTILS_THREAD_HPP */
#define UHD_API
Definition config.h:68
Definition build_info.hpp:13
UHD_API void set_thread_name(boost::thread *thread, const std::string &name)
UHD_API void set_thread_priority(float priority=default_thread_priority, bool realtime=true)
UHD_API bool set_thread_priority_safe(float priority=default_thread_priority, bool realtime=true)