Implement proc_map () and proc_unmap () syscalls
All checks were successful
Build documentation / build-and-deploy (push) Successful in 21s

This commit is contained in:
2026-01-06 23:32:11 +01:00
parent 9f107a1a5e
commit 28aef30f77
15 changed files with 155 additions and 18 deletions

View File

@@ -3,8 +3,12 @@
#define SYS_PROC_QUIT 1
#define SYS_PROC_TEST 2
#define SYS_PROC_MAP 3
#define SYS_PROC_UNMAP 4
#define SR_OK 0
#define SR_SYSCALL_NOT_FOUND 1
#define SR_UNALIGNED 2
#define SR_OOM_ERROR 3
#endif // _M_SYSCALL_DEFS_H