All checks were successful
Build documentation / build-and-deploy (push) Successful in 44s
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_CREATE_MUTEX 7
|
|
#define SYS_UNLINK_MUTEX 8
|
|
#define SYS_LOCK_MUTEX 9
|
|
#define SYS_UNLOCK_MUTEX 10
|
|
|
|
#endif // _M_SYSCALL_DEFS_H
|