All checks were successful
Build documentation / build-and-deploy (push) Successful in 34s
16 lines
363 B
C
16 lines
363 B
C
#ifndef _M_SYSCALL_DEFS_H
|
|
#define _M_SYSCALL_DEFS_H
|
|
|
|
#define SYS_QUIT 1
|
|
#define SYS_TEST 2
|
|
#define SYS_MAP 3
|
|
#define SYS_UNMAP 4
|
|
#define SYS_CLONE 5
|
|
#define SYS_SCHED 6
|
|
#define SYS_MUTEX_CREATE 7
|
|
#define SYS_MUTEX_DELETE 8
|
|
#define SYS_MUTEX_LOCK 9
|
|
#define SYS_MUTEX_UNLOCK 10
|
|
|
|
#endif // _M_SYSCALL_DEFS_H
|