sync
authorderaadt <deraadt@openbsd.org>
Tue, 12 Dec 2017 01:13:14 +0000 (01:13 +0000)
committerderaadt <deraadt@openbsd.org>
Tue, 12 Dec 2017 01:13:14 +0000 (01:13 +0000)
sys/kern/init_sysent.c
sys/kern/syscalls.c
sys/sys/syscall.h
sys/sys/syscallargs.h

index 5e20003..724f3df 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: init_sysent.c,v 1.190 2017/11/28 06:05:15 guenther Exp $      */
+/*     $OpenBSD: init_sysent.c,v 1.191 2017/12/12 01:13:14 deraadt Exp $       */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.179 2017/11/28 06:03:41 guenther Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.180 2017/12/12 01:12:34 deraadt Exp 
  */
 
 #include <sys/param.h>
index 668382a..2a069bc 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscalls.c,v 1.189 2017/11/28 06:05:16 guenther Exp $ */
+/*     $OpenBSD: syscalls.c,v 1.190 2017/12/12 01:13:14 deraadt Exp $  */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.179 2017/11/28 06:03:41 guenther Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.180 2017/12/12 01:12:34 deraadt Exp 
  */
 
 char *syscallnames[] = {
index fa8c665..4309ec0 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscall.h,v 1.189 2017/11/28 06:05:15 guenther Exp $  */
+/*     $OpenBSD: syscall.h,v 1.190 2017/12/12 01:13:14 deraadt Exp $   */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.179 2017/11/28 06:03:41 guenther Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.180 2017/12/12 01:12:34 deraadt Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
 /* syscall: "chflagsat" ret: "int" args: "int" "const char *" "u_int" "int" */
 #define        SYS_chflagsat   107
 
-/* syscall: "pledge" ret: "int" args: "const char *" "const char **" */
+/* syscall: "pledge" ret: "int" args: "const char *" "const char *" */
 #define        SYS_pledge      108
 
 /* syscall: "ppoll" ret: "int" args: "struct pollfd *" "u_int" "const struct timespec *" "const sigset_t *" */
index 09fc80b..38809ea 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscallargs.h,v 1.192 2017/11/28 06:05:15 guenther Exp $      */
+/*     $OpenBSD: syscallargs.h,v 1.193 2017/12/12 01:13:14 deraadt Exp $       */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.179 2017/11/28 06:03:41 guenther Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.180 2017/12/12 01:12:34 deraadt Exp 
  */
 
 #ifdef syscallarg
@@ -538,8 +538,8 @@ struct sys_chflagsat_args {
 };
 
 struct sys_pledge_args {
-       syscallarg(const char *) request;
-       syscallarg(const char **) paths;
+       syscallarg(const char *) promises;
+       syscallarg(const char *) execpromises;
 };
 
 struct sys_ppoll_args {