summaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2025-06-03 15:36:47 -0400
committerIan Moffett <ian@osmora.org>2025-06-03 15:36:47 -0400
commitc667b53e5914288f999fed96d880e7afe98f03e3 (patch)
tree5a583a12de8ed6dd1a4707c4af55e2fcf56f24b9 /sys/include
parentb4b978573e8d834f2b484d11196d523d9a2a893a (diff)
kernel: syscall: Add SYS_mmap and SYS_munmap
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/sys/syscall.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/sys/syscall.h b/sys/include/sys/syscall.h
index 2223a96..dad2e00 100644
--- a/sys/include/sys/syscall.h
+++ b/sys/include/sys/syscall.h
@@ -48,6 +48,8 @@
#define SYS_write 7
#define SYS_spawn 8
#define SYS_reboot 9
+#define SYS_mmap 10
+#define SYS_munmap 11
#if defined(_KERNEL)
/* Syscall return value and arg type */