diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-09-30 09:08:55 +0200 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2014-09-30 09:15:08 +0200 |
commit | dfcdc049242c9ceb75fe82c16a20149244d8abd6 (patch) | |
tree | ef4fa982691ef1f2b2fdd9ddb644b612302418bb /kern/sched_prim.c | |
parent | dd2b22a787420e4b9d74e2778961b14f59293c91 (diff) | |
download | gnumach-dfcdc049242c9ceb75fe82c16a20149244d8abd6.tar.gz gnumach-dfcdc049242c9ceb75fe82c16a20149244d8abd6.tar.bz2 gnumach-dfcdc049242c9ceb75fe82c16a20149244d8abd6.zip |
kern: fix type of recompute_priorities
* kern/sched_prim.c (recompute_priorities): Fix type.
* kern/sched_prim.h (recompute_priorities): Likewise.
Diffstat (limited to 'kern/sched_prim.c')
-rw-r--r-- | kern/sched_prim.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/sched_prim.c b/kern/sched_prim.c index 1d2e14e5..66eb9c95 100644 --- a/kern/sched_prim.c +++ b/kern/sched_prim.c @@ -1076,7 +1076,7 @@ void compute_my_priority( * * Update the priorities of all threads periodically. */ -void recompute_priorities(const void *param) +void recompute_priorities(void *param) { #if SIMPLE_CLOCK int new_usec; |