Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1228 → Rev 1229

/kernel/trunk/generic/src/main/main.c
95,7 → 95,7
 
#define CONFIG_STACK_SIZE ((1<<STACK_FRAMES)*STACK_SIZE)
 
/** Bootstrap CPU main kernel routine
/** Main kernel routine for bootstrap CPU.
*
* Initializes the kernel by bootstrap CPU.
* This function passes control directly to
137,7 → 137,7
}
 
 
/** Bootstrap CPU main kernel routine stack wrapper
/** Main kernel routine for bootstrap CPU using new stack.
*
* Second part of main_bsp().
*
224,7 → 224,7
 
 
#ifdef CONFIG_SMP
/** Application CPUs main kernel routine
/** Main kernel routine for application CPUs.
*
* Executed by application processors, temporary stack
* is at ctx.sp which was set during BP boot.
275,7 → 275,7
}
 
 
/** Application CPUs main kernel routine stack wrapper
/** Main kernel routine for application CPUs using new stack.
*
* Second part of main_ap().
*