USRP Hardware Driver and USRP Manual  Version: 3.11.0.HEAD-0-ga1b5c4ae
UHD and USRP Manual
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 
15 namespace uhd{
16 
17  static const float default_thread_priority = float(0.5);
18 
34  float priority = default_thread_priority,
35  bool realtime = true
36  );
37 
44  float priority = default_thread_priority,
45  bool realtime = true
46  );
47 
54  boost::thread *thread,
55  const std::string &name
56  );
57 
58 } //namespace uhd
59 
60 #endif /* INCLUDED_UHD_UTILS_THREAD_HPP */
UHD_API bool set_thread_priority_safe(float priority=default_thread_priority, bool realtime=true)
Definition: build_info.hpp:14
UHD_API void set_thread_name(boost::thread *thread, const std::string &name)
#define UHD_API
Definition: config.h:63
UHD_API void set_thread_priority(float priority=default_thread_priority, bool realtime=true)