aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/actions/sys_exit.c
blob: 98e0c341df1a9ae8bf2591d248b804583dd86651 (plain) (blame)
1
2
3
4
5
6
7
8
#include <stdint.h>
#include <tasks/process.h>

u32 sys_exit(u32 code)
{
	current_proc->state = PROC_ASLEEP;
	return code;
}