Files
my-os-project2/kernel/syscall/sched.h

12 lines
224 B
C

#ifndef SYSCALL_SCHED_H_
#define SYSCALL_SCHED_H_
#include <stdint.h>
#include <stddef.h>
#include "syscall/syscall.h"
int32_t SYSCALL0(sys_schedrelease);
int32_t SYSCALL1(sys_schedsleep, ms1);
#endif // SYSCALL_SCHED_H_