mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Adjust the priority of the idle threads to be the lowest possible
priority. This is just a comestic nit as the idle thread priorities aren't used by the schedulers. Reported by: bde
This commit is contained in:
parent
3df6c4de7e
commit
c086588f32
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131243
@ -60,6 +60,7 @@ idle_setup(void *dummy)
|
||||
td = FIRST_THREAD_IN_PROC(p);
|
||||
td->td_state = TDS_CAN_RUN;
|
||||
td->td_flags |= TDF_IDLETD;
|
||||
td->td_priority = PRI_MAX_IDLE;
|
||||
mtx_unlock_spin(&sched_lock);
|
||||
PROC_UNLOCK(p);
|
||||
#ifdef SMP
|
||||
|
Loading…
Reference in New Issue
Block a user