diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-12 14:09:42 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-13 01:31:38 +0100 |
commit | 2299788617bd2dca2e2c6f33df04ffa5c4ab8fe4 (patch) | |
tree | cc409d55aa689101ae8d1595535f35cdf5a83c8c | |
parent | b44b062d319d4b27c6b7e057e992f15a273621cc (diff) |
kern: remove register qualifiers
* kern/startup.c: Remove register qualifiers.
-rw-r--r-- | kern/startup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kern/startup.c b/kern/startup.c index 6dced43..5e35b98 100644 --- a/kern/startup.c +++ b/kern/startup.c @@ -210,7 +210,7 @@ void setup_main() */ void start_kernel_threads() { - register int i; + int i; /* * Create the idle threads and the other @@ -287,9 +287,9 @@ void slave_main() * First thread is specified for the master CPU. */ void cpu_launch_first_thread(th) - register thread_t th; + thread_t th; { - register int mycpu; + int mycpu; mycpu = cpu_number(); |