summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kern/thread_swap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/thread_swap.c b/kern/thread_swap.c
index f29bd5b..e76511e 100644
--- a/kern/thread_swap.c
+++ b/kern/thread_swap.c
@@ -125,7 +125,7 @@ void thread_swapin(thread)
* likely that this routine will sleep (waiting for stack allocation).
*/
void thread_doswapin(thread)
- register thread_t thread;
+ thread_t thread;
{
spl_t s;
@@ -157,7 +157,7 @@ void thread_doswapin(thread)
void swapin_thread_continue(void)
{
for (;;) {
- register thread_t thread;
+ thread_t thread;
spl_t s;
s = splsched();