summaryrefslogtreecommitdiffstats
path: root/sys/sys/syscallargs.h
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2020-01-26 04:29:17 +0000
committertedu <tedu@openbsd.org>2020-01-26 04:29:17 +0000
commita902577eaa5b3f092f5b4cb28a3d303d2d755945 (patch)
treeb7ba02e868f7cc1b39b021bcd01485af663e252d /sys/sys/syscallargs.h
parentadd a new __tmpfd system call that creates a new unnamed file in /tmp. (diff)
downloadwireguard-openbsd-a902577eaa5b3f092f5b4cb28a3d303d2d755945.tar.xz
wireguard-openbsd-a902577eaa5b3f092f5b4cb28a3d303d2d755945.zip
regen
Diffstat (limited to 'sys/sys/syscallargs.h')
-rw-r--r--sys/sys/syscallargs.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 907846440cb..7c48858d3b5 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.213 2020/01/21 15:21:42 visa Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.214 2020/01/26 04:29:17 tedu Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.202 2020/01/21 15:20:47 visa Exp
+ * created from; OpenBSD: syscalls.master,v 1.203 2020/01/26 04:28:18 tedu Exp
*/
#ifdef syscallarg
@@ -701,6 +701,10 @@ struct sys_getfh_args {
syscallarg(fhandle_t *) fhp;
};
+struct sys___tmpfd_args {
+ syscallarg(int) flags;
+};
+
struct sys_sysarch_args {
syscallarg(int) op;
syscallarg(void *) parms;
@@ -1256,6 +1260,7 @@ int sys_nfssvc(struct proc *, void *, register_t *);
#else
#endif
int sys_getfh(struct proc *, void *, register_t *);
+int sys___tmpfd(struct proc *, void *, register_t *);
int sys_sysarch(struct proc *, void *, register_t *);
int sys_pread(struct proc *, void *, register_t *);
int sys_pwrite(struct proc *, void *, register_t *);