diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-04-26 15:53:24 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-04-26 15:53:24 +0200 |
commit | 9685f9d0f2b0c667316c090b88093523ac6af9ab (patch) | |
tree | b356bdbe959f7fad578c3ae86415abce293b0243 /debian/patches/nrqs.patch | |
parent | 01db8b8c4f9d03cb8b032089829281081a3a75b0 (diff) |
drop merged patches
Diffstat (limited to 'debian/patches/nrqs.patch')
-rw-r--r-- | debian/patches/nrqs.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/patches/nrqs.patch b/debian/patches/nrqs.patch deleted file mode 100644 index 8c72ef1..0000000 --- a/debian/patches/nrqs.patch +++ /dev/null @@ -1,27 +0,0 @@ -commit 3a4f2e95e91b1b23d5c11190ff2dfc3c048deffb -Author: Justus Winter <4winter@informatik.uni-hamburg.de> -Date: Fri Apr 24 00:08:23 2015 +0200 - - kern: avoid hardcoding the lowest priority - - The number of priorities has been changed from 32 to 50 in - 6a234201081156e6d5742e7eeabb68418b518fad. - - * kern/syscall_subr.c (thread_depress_priority): Avoid hardcoding the - lowest priority. - -diff --git a/kern/syscall_subr.c b/kern/syscall_subr.c -index 3c369ef..6d23462 100644 ---- a/kern/syscall_subr.c -+++ b/kern/syscall_subr.c -@@ -302,8 +302,8 @@ thread_depress_priority( - * sched_pri to their lowest possible values. - */ - thread->depress_priority = thread->priority; -- thread->priority = 31; -- thread->sched_pri = 31; -+ thread->priority = NRQS-1; -+ thread->sched_pri = NRQS-1; - if (ticks != 0) - set_timeout(&thread->depress_timer, ticks); - |