summaryrefslogtreecommitdiff
path: root/kern/startup.c
diff options
context:
space:
mode:
authorMarin Ramesa <mpr@hi.t-com.hr>2013-11-12 14:09:42 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-11-13 01:31:38 +0100
commit2299788617bd2dca2e2c6f33df04ffa5c4ab8fe4 (patch)
treecc409d55aa689101ae8d1595535f35cdf5a83c8c /kern/startup.c
parentb44b062d319d4b27c6b7e057e992f15a273621cc (diff)
kern: remove register qualifiers
* kern/startup.c: Remove register qualifiers.
Diffstat (limited to 'kern/startup.c')
-rw-r--r--kern/startup.c6
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();