summaryrefslogtreecommitdiff
path: root/sys/compat/linux/arch/aarch64/linux_syscallargs.h
diff options
context:
space:
mode:
authorryo <ryo@NetBSD.org>2021-12-02 04:39:44 +0000
committerryo <ryo@NetBSD.org>2021-12-02 04:39:44 +0000
commit88bfb20eb191dc67cf1cd06ca1aa1da16ea5cc2c (patch)
tree93b84e3557633f8c386dabd853883d6c891dd32d /sys/compat/linux/arch/aarch64/linux_syscallargs.h
parentd281faeb6da0b9302650c5605e773c0b3d983358 (diff)
regen
Diffstat (limited to 'sys/compat/linux/arch/aarch64/linux_syscallargs.h')
-rw-r--r--sys/compat/linux/arch/aarch64/linux_syscallargs.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/compat/linux/arch/aarch64/linux_syscallargs.h b/sys/compat/linux/arch/aarch64/linux_syscallargs.h
index 511d519893e..e41e6106bb1 100644
--- a/sys/compat/linux/arch/aarch64/linux_syscallargs.h
+++ b/sys/compat/linux/arch/aarch64/linux_syscallargs.h
@@ -1,4 +1,4 @@
-/* $NetBSD: linux_syscallargs.h,v 1.3 2021/11/25 02:32:24 ryo Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.4 2021/12/02 04:39:44 ryo Exp $ */
/*
* System call argument lists.
@@ -957,6 +957,14 @@ struct linux_sys_wait4_args {
};
check_syscall_args(linux_sys_wait4)
+struct linux_sys_prlimit64_args {
+ syscallarg(pid_t) pid;
+ syscallarg(int) which;
+ syscallarg(struct rlimit *) new_rlp;
+ syscallarg(struct rlimit *) old_rlp;
+};
+check_syscall_args(linux_sys_prlimit64)
+
struct linux_sys_sendmmsg_args {
syscallarg(int) s;
syscallarg(struct linux_mmsghdr *) msgvec;
@@ -1361,6 +1369,8 @@ int linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, reg
int linux_sys_wait4(struct lwp *, const struct linux_sys_wait4_args *, register_t *);
+int linux_sys_prlimit64(struct lwp *, const struct linux_sys_prlimit64_args *, register_t *);
+
int linux_sys_sendmmsg(struct lwp *, const struct linux_sys_sendmmsg_args *, register_t *);
int sys_getrandom(struct lwp *, const struct sys_getrandom_args *, register_t *);