tag | line | file | source code |
DEF_PRIORITY | 684 | fs/proc/array.c | priority = 20 - (priority * 10 + DEF_PRIORITY / 2) / DEF_PRIORITY; |
DEF_PRIORITY | 686 | fs/proc/array.c | nice = 20 - (nice * 20 + DEF_PRIORITY / 2) / DEF_PRIORITY; |
DEF_PRIORITY | 285 | include/linux/sched.h | /* state etc */ { 0,DEF_PRIORITY,DEF_PRIORITY,0,0,0,0, \ |
DEF_PRIORITY | 836 | kernel/sched.c | if (current->priority < DEF_PRIORITY) |
DEF_PRIORITY | 896 | kernel/sched.c | if (current_set[i]->priority < DEF_PRIORITY) |
DEF_PRIORITY | 1059 | kernel/sched.c | newprio = (newprio * DEF_PRIORITY + 10) / 20; |
DEF_PRIORITY | 1066 | kernel/sched.c | if (newprio > DEF_PRIORITY*2) |
DEF_PRIORITY | 1067 | kernel/sched.c | newprio = DEF_PRIORITY*2; |
DEF_PRIORITY | 79 | kernel/sys.c | priority = (priority * DEF_PRIORITY + 10) / 20 + DEF_PRIORITY; |
DEF_PRIORITY | 82 | kernel/sys.c | priority = 2*DEF_PRIORITY - priority; |
DEF_PRIORITY | 127 | kernel/sys.c | max_prio = (max_prio * 20 + DEF_PRIORITY/2) / DEF_PRIORITY; |