summaryrefslogtreecommitdiffstats
path: root/include/syscall.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2025-09-04 12:01:44 -0400
committerJon Santmyer <jon@jonsantmyer.com>2025-09-04 12:01:44 -0400
commit032a7bc4d79efea100a00cf3464bea3249a07ff6 (patch)
treedab1be8053ac540e4163ffbff850fefa4f22171f /include/syscall.h
parentd26eb8b54969e79d933a8e20f2725343cd42deab (diff)
downloadjove-kernel-032a7bc4d79efea100a00cf3464bea3249a07ff6.tar.gz
jove-kernel-032a7bc4d79efea100a00cf3464bea3249a07ff6.tar.bz2
jove-kernel-032a7bc4d79efea100a00cf3464bea3249a07ff6.zip
syscall message unmaps upon invokemain
Diffstat (limited to 'include/syscall.h')
-rw-r--r--include/syscall.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/syscall.h b/include/syscall.h
index 7410acc..e04ff85 100644
--- a/include/syscall.h
+++ b/include/syscall.h
@@ -38,7 +38,9 @@ enum
/*[first path][u8 funcid][second path]*/
INVOKE_UNTYPED_MERGE,
/*[target path][u8 funcid][size_t ret]*/
- INVOKE_UNTYPED_ALIGNMENT
+ INVOKE_UNTYPED_ALIGNMENT,
+ /*[target path][u8 funcid][u16 type]*/
+ INVOKE_UNTYPED_RETYPE,
};
#endif