11 lines
196 B
C
11 lines
196 B
C
#ifndef SYSCALL_SCHED_H_
|
|
#define SYSCALL_SCHED_H_
|
|
|
|
#include <stdint.h>
|
|
#include "syscall.h"
|
|
|
|
int32_t SYSCALL0(sys_schedrelease);
|
|
int32_t SYSCALL1(sys_schedsleep, ms1);
|
|
|
|
#endif // SYSCALL_SCHED_H_
|