18 lines
297 B
C
18 lines
297 B
C
//
|
|
// 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
|