aboutsummaryrefslogtreecommitdiff
path: root/include/apos/uapi.h
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-10-21 21:34:18 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-10-21 21:34:18 +0300
commitdd7c04a39bd88da8e381bb88078c41b049a6665c (patch)
treef5210700cc1789547ae55926c7f9aaa753fbb791 /include/apos/uapi.h
parentec989bbe7d9bb7a844eeddeceaeb7bb7e4d5dab6 (diff)
downloadkmi-dd7c04a39bd88da8e381bb88078c41b049a6665c.tar.gz
kmi-dd7c04a39bd88da8e381bb88078c41b049a6665c.zip
beautification
Diffstat (limited to 'include/apos/uapi.h')
-rw-r--r--include/apos/uapi.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/apos/uapi.h b/include/apos/uapi.h
index 02e8816..7da24c6 100644
--- a/include/apos/uapi.h
+++ b/include/apos/uapi.h
@@ -51,6 +51,14 @@ struct sys_ret {
sys_arg_t ar4;
};
+#define SYS_RET0() (struct sys_ret){0, 0, 0, 0, 0, 0}
+#define SYS_RET1(a) (struct sys_ret){a, 0, 0, 0, 0, 0}
+#define SYS_RET2(a, b) (struct sys_ret){a, b, 0, 0, 0, 0}
+#define SYS_RET3(a, b, c) (struct sys_ret){a, b, c, 0, 0, 0}
+#define SYS_RET4(a, b, c, d) (struct sys_ret){a, b, c, d, 0, 0}
+#define SYS_RET5(a, b, c, d, e) (struct sys_ret){a, b, c, d, e, 0}
+#define SYS_RET6(a, b, c, d, e, f) (struct sys_ret){a, b, c, d, e, f}
+
/**
* Helper macro for declaring syscalls with zero arguments.
*