Luna/kernel/src/sys/exit.cpp

8 lines
125 B
C++
Raw Normal View History

#include "sys/Syscall.h"
#include "thread/Scheduler.h"
Result<u64> sys_exit(Registers*, SyscallArgs)
{
kernel_exit();
}