14 lines
225 B
C
14 lines
225 B
C
|
|
#include <mango/machine/cpu.h>
|
||
|
|
#include <mango/printk.h>
|
||
|
|
#include <mango/sched.h>
|
||
|
|
|
||
|
|
extern kern_status_t sys_exit(int status)
|
||
|
|
{
|
||
|
|
printk("sys_exit(%d)", status);
|
||
|
|
while (1) {
|
||
|
|
ml_cpu_pause();
|
||
|
|
}
|
||
|
|
|
||
|
|
return KERN_UNIMPLEMENTED;
|
||
|
|
}
|