Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
Feature or enhancement
Proposal:
This issue suggests adding new os constants.
os.SCHED_DEADLINE
# deadline scheduling# Set the current schedule to real-time schedule, To be precise, it# is not real-time scheduling, but it is relatively real-time.prio = os.sched_param(sched_priority=10)os.sched_setscheduler(0, os.SCHED_DEADLINE, prio)SCHED_NORMAL is the same asSCHED_OTHER.
But to run in the old linux, we can't removeSCHED_OTHER, even if it no longer exists in the current main branch.
But we still need to addSCHED_NORMAL, becauseSCHED_OTHER only exists in the old distribution.
Has this already been discussed elsewhere?
No response given
Links to previous discussion of this feature:
No response