diff options
Diffstat (limited to 'src/include/kernel/syscalls.H')
-rw-r--r-- | src/include/kernel/syscalls.H | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/include/kernel/syscalls.H b/src/include/kernel/syscalls.H new file mode 100644 index 000000000..a7a0ef6b7 --- /dev/null +++ b/src/include/kernel/syscalls.H @@ -0,0 +1,13 @@ +#ifndef __KERNEL_SYSCALLS_H +#define __KERNEL_SYSCALLS_H + +namespace Systemcalls +{ + enum SysCalls + { + TASK_YIELD = 0, + + SYSCALL_MAX + }; +}; +#endif |