Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 793 → Rev 794

/kernel/trunk/arch/mips32/src/mips32.c
95,6 → 95,10
debugger_init();
arc_print_memory_map();
arc_print_devices();
 
/* Setup usermode...*/
config.init_addr = 0x20000000;
config.init_size = FRAME_SIZE;
}
 
void arch_post_mm_init(void)
109,6 → 113,14
{
}
 
/* Stack pointer saved when entering user mode */
/* TODO: How do we do it on SMP system???? */
 
/* Why the hell moves the linker the variable 64K away in assembler
* when not in .text section ????????
*/
__address supervisor_sp __attribute__ ((section (".text")));
 
void userspace(void)
{
/* EXL=1, UM=1, IE=1 */
122,10 → 134,6
;
}
 
/* Stack pointer saved when entering user mode */
/* TODO: How do we do it on SMP system???? */
__address supervisor_sp;
 
void before_thread_runs_arch(void)
{
supervisor_sp = (__address) &THREAD->kstack[THREAD_STACK_SIZE-SP_DELTA];