From ccfb0c2cd0154c18d0b885e6afcfaeebb7a8160b Mon Sep 17 00:00:00 2001 From: Marin Ramesa Date: Tue, 12 Nov 2013 14:38:19 +0100 Subject: kern: remove register qualifiers * kern/thread_swap.c: Remove register qualifiers. --- kern/thread_swap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kern/thread_swap.c b/kern/thread_swap.c index f29bd5b7..e76511e6 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(); -- cgit v1.2.3