diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2008-07-16 00:06:49 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:27:15 +0200 |
commit | 9988809c45696331e4ff6a831653f042211ad8ae (patch) | |
tree | 4febbbfab596d20641f43586c2ccb6dd1ff276c2 /kern/sched_prim.h | |
parent | 79dac7c8bdfc3e22d0caf20f11ffbbbabf50e3ee (diff) | |
download | gnumach-9988809c45696331e4ff6a831653f042211ad8ae.tar.gz gnumach-9988809c45696331e4ff6a831653f042211ad8ae.tar.bz2 gnumach-9988809c45696331e4ff6a831653f042211ad8ae.zip |
2008-07-15 Barry deFreese <bddebian@comcast.net>
* kern/priority.c: Include <kern/sched_prim.h>.
* kern/sched_prim.c (recompute_priorities, update_priority): Remove
prototypes.
* kern/sched_prim.h (update_priority, compute_my_priority): Add
prototypes.
Diffstat (limited to 'kern/sched_prim.h')
-rw-r--r-- | kern/sched_prim.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kern/sched_prim.h b/kern/sched_prim.h index 6a4c32de..a5416a53 100644 --- a/kern/sched_prim.h +++ b/kern/sched_prim.h @@ -104,6 +104,11 @@ extern boolean_t thread_handoff( continuation_t continuation, thread_t new_thread); extern void recompute_priorities(); +extern void update_priority( + thread_t thread); +extern void compute_my_priority( + thread_t thread); + /* * Routines defined as macros |