You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, only the nice value is set in the example. To avoid the user to launch the example with chrt commands, we can add this directly in the code via a system call.
For example in python this works:
import os
os.sched_setscheduler(0,os.SCHED_FIFO,os.sched_param(99))
The text was updated successfully, but these errors were encountered:
Right now, only the nice value is set in the example. To avoid the user to launch the example with
chrt
commands, we can add this directly in the code via a system call.For example in python this works:
The text was updated successfully, but these errors were encountered: