Move shared headers out to include/

This commit is contained in:
2026-02-22 00:05:26 +01:00
parent 821ad9511a
commit 502cfa7335
29 changed files with 33 additions and 33 deletions

26
include/syscall_defs.h Normal file
View File

@@ -0,0 +1,26 @@
#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
#define SYS_ARGUMENT_PTR 11
#define SYS_DEVICE_DO 12
#define SYS_EXEC 13
#define SYS_OPEN 14
#define SYS_CLOSE 15
#define SYS_READ 16
#define SYS_DESCRIBE 17
#define SYS_MAIL_SEND 18
#define SYS_MAIL_RECEIVE 19
#define SYS_GET_PROCGROUP 20
#define SYS_GET_EXEC_PID 21
#endif // _M_SYSCALL_DEFS_H