summaryrefslogtreecommitdiff
path: root/sys/compat/linux/arch/powerpc/linux_syscallargs.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/linux/arch/powerpc/linux_syscallargs.h')
-rw-r--r--sys/compat/linux/arch/powerpc/linux_syscallargs.h14
1 files changed, 12 insertions, 2 deletions
diff --git a/sys/compat/linux/arch/powerpc/linux_syscallargs.h b/sys/compat/linux/arch/powerpc/linux_syscallargs.h
index 78c3cb65ac3..14361a05eee 100644
--- a/sys/compat/linux/arch/powerpc/linux_syscallargs.h
+++ b/sys/compat/linux/arch/powerpc/linux_syscallargs.h
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.90 2021/11/24 18:57:25 ryo Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.91 2021/12/02 04:39:45 ryo Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.78 2021/09/20 02:20:02 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.79 2021/11/24 18:52:13 ryo Exp
*/
#ifndef _LINUX_SYS_SYSCALLARGS_H_
@@ -1100,6 +1100,14 @@ struct linux_sys_pwritev_args {
};
check_syscall_args(linux_sys_pwritev)
+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_recvmmsg_args {
syscallarg(int) s;
syscallarg(struct linux_mmsghdr *) msgvec;
@@ -1581,6 +1589,8 @@ int linux_sys_preadv(struct lwp *, const struct linux_sys_preadv_args *, registe
int linux_sys_pwritev(struct lwp *, const struct linux_sys_pwritev_args *, register_t *);
+int linux_sys_prlimit64(struct lwp *, const struct linux_sys_prlimit64_args *, register_t *);
+
int linux_sys_recvmmsg(struct lwp *, const struct linux_sys_recvmmsg_args *, register_t *);
int linux_sys_accept4(struct lwp *, const struct linux_sys_accept4_args *, register_t *);