blob: 50ef24d6c15480e606248d0de4892778854a91ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
========================================================================
UHD - General Application Notes
========================================================================
.. contents:: Table of Contents
------------------------------------------------------------------------
Misc notes
------------------------------------------------------------------------
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Thread priority scheduling
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
When the UHD spawns a new thread it may try to boost the thread's scheduling priority.
When setting the priority fails, the UHD prints out an error.
This error is harmless, it simply means that the thread will have a normal scheduling priority.
**Linux Notes:**
Non-privileged users need special permission to change the scheduling priority.
Add the following line to */etc/security/limits.conf*:
::
@<my_group> - rtprio 99
Replace <my_group> with a group to which your user belongs.
Settings will not take effect until the user has logged in and out.
|