diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-12 14:38:19 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-13 01:31:39 +0100 |
commit | ccfb0c2cd0154c18d0b885e6afcfaeebb7a8160b (patch) | |
tree | 725e8a359c0af74b1237001a9b5865d3910684a1 /kern/thread_swap.c | |
parent | fb74fda7e9b254cc3ee01726f78583e3c5f2260d (diff) |
kern: remove register qualifiers
* kern/thread_swap.c: Remove register qualifiers.
Diffstat (limited to 'kern/thread_swap.c')
-rw-r--r-- | kern/thread_swap.c | 4 |
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(); |