feat: moved libk stuff to libk folder

This commit is contained in:
2021-02-27 14:11:28 +01:00
parent 9fdc89a3a6
commit 934deb7984
19 changed files with 19 additions and 19 deletions

17
kernel/libk/syscall.h Normal file
View File

@@ -0,0 +1,17 @@
//
// Created by rick on 22-02-21.
//
#ifndef NEW_KERNEL_SYSCALL_H
#define NEW_KERNEL_SYSCALL_H
#include <attributes.h>
#define SYSCALL_START_SCHEDULER 0x01
#define SYSCALL_YIELD_JOB 0x02
void syscall_yield_job();
void noreturn syscall_start_scheduler();
#endif //NEW_KERNEL_SYSCALL_H