runtime: run kernel just once

This commit is contained in:
Sebastien Bourdeauducq 2014-07-05 22:47:23 +02:00
parent 301b7d51fa
commit 5570d45acb
1 changed files with 2 additions and 5 deletions

View File

@ -71,7 +71,7 @@ static const struct symbol syscalls[] = {
{NULL, NULL}
};
typedef void (*kernel_function)(int);
typedef void (*kernel_function)(void);
int main(void)
{
@ -92,10 +92,7 @@ int main(void)
if(length > 0) {
load_elf(syscalls, kbuf, length, kcode, sizeof(kcode));
flush_cpu_icache();
for(i=0;i<40;i++) {
printf("%2d: ", i);
k(i);
}
k();
}
}