summaryrefslogtreecommitdiff
path: root/sys/compat/linux32/arch/amd64/linux32_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/linux32/arch/amd64/linux32_syscallargs.h
parentd281faeb6da0b9302650c5605e773c0b3d983358 (diff)
regen
Diffstat (limited to 'sys/compat/linux32/arch/amd64/linux32_syscallargs.h')
-rw-r--r--sys/compat/linux32/arch/amd64/linux32_syscallargs.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/sys/compat/linux32/arch/amd64/linux32_syscallargs.h b/sys/compat/linux32/arch/amd64/linux32_syscallargs.h
index 1301ee64e1a..8f8c027e15c 100644
--- a/sys/compat/linux32/arch/amd64/linux32_syscallargs.h
+++ b/sys/compat/linux32/arch/amd64/linux32_syscallargs.h
@@ -1,4 +1,4 @@
-/* $NetBSD: linux32_syscallargs.h,v 1.86 2021/11/27 21:15:53 ryo Exp $ */
+/* $NetBSD: linux32_syscallargs.h,v 1.87 2021/12/02 04:39:45 ryo Exp $ */
/*
* System call argument lists.
@@ -1105,6 +1105,14 @@ struct linux32_sys_pwritev_args {
};
check_syscall_args(linux32_sys_pwritev)
+struct linux32_sys_prlimit64_args {
+ syscallarg(pid_t) pid;
+ syscallarg(int) which;
+ syscallarg(netbsd32_rlimitp_t) new_rlp;
+ syscallarg(netbsd32_rlimitp_t) old_rlp;
+};
+check_syscall_args(linux32_sys_prlimit64)
+
/*
* System call prototypes.
*/
@@ -1579,4 +1587,6 @@ int linux32_sys_preadv(struct lwp *, const struct linux32_sys_preadv_args *, reg
int linux32_sys_pwritev(struct lwp *, const struct linux32_sys_pwritev_args *, register_t *);
+int linux32_sys_prlimit64(struct lwp *, const struct linux32_sys_prlimit64_args *, register_t *);
+
#endif /* _LINUX32_SYS_SYSCALLARGS_H_ */