Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 1903 → Rev 1902

/trunk/kernel/arch/sparc64/src/sparc64.c
70,14 → 70,12
 
void arch_pre_mm_init(void)
{
if (config.cpu_active == 1)
trap_init();
trap_init();
}
 
void arch_post_mm_init(void)
{
if (config.cpu_active == 1)
standalone_sparc64_console_init();
standalone_sparc64_console_init();
}
 
void arch_post_cpu_init(void)
92,15 → 90,13
{
thread_t *t;
 
if (config.cpu_active == 1) {
/*
* Create thread that polls keyboard.
*/
t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll");
if (!t)
panic("cannot create kkbdpoll\n");
thread_ready(t);
}
/*
* Create thread that polls keyboard.
*/
t = thread_create(kkbdpoll, NULL, TASK, 0, "kkbdpoll");
if (!t)
panic("cannot create kkbdpoll\n");
thread_ready(t);
}
 
/** Calibrate delay loop.