Regen
authormiod <miod@openbsd.org>
Mon, 24 Jul 2023 19:33:29 +0000 (19:33 +0000)
committermiod <miod@openbsd.org>
Mon, 24 Jul 2023 19:33:29 +0000 (19:33 +0000)
sys/kern/init_sysent.c
sys/kern/syscalls.c
sys/sys/syscall.h
sys/sys/syscallargs.h

index c2e4c29..fedc9a1 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: init_sysent.c,v 1.266 2023/05/18 10:24:28 mvs Exp $   */
+/*     $OpenBSD: init_sysent.c,v 1.267 2023/07/24 19:33:29 miod Exp $  */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.248 2023/05/18 10:23:19 mvs Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.249 2023/07/24 19:32:23 miod Exp 
  */
 
 #include <sys/param.h>
index 92387f6..2667a35 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscalls.c,v 1.264 2023/05/18 10:24:28 mvs Exp $      */
+/*     $OpenBSD: syscalls.c,v 1.265 2023/07/24 19:33:29 miod Exp $     */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.248 2023/05/18 10:23:19 mvs Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.249 2023/07/24 19:32:23 miod Exp 
  */
 
 const char *const syscallnames[] = {
index 3dbbb8c..0dd5f01 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscall.h,v 1.263 2023/05/18 10:24:28 mvs Exp $       */
+/*     $OpenBSD: syscall.h,v 1.264 2023/07/24 19:33:29 miod Exp $      */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.248 2023/05/18 10:23:19 mvs Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.249 2023/07/24 19:32:23 miod Exp 
  */
 
 /* syscall: "syscall" ret: "int" args: "int" "..." */
 /* syscall: "adjtime" ret: "int" args: "const struct timeval *" "struct timeval *" */
 #define        SYS_adjtime     140
 
-/* syscall: "getlogin_r" ret: "int" args: "char *" "u_int" */
+/* syscall: "getlogin_r" ret: "int" args: "char *" "size_t" */
 #define        SYS_getlogin_r  141
 
 /* syscall: "getthrname" ret: "int" args: "pid_t" "char *" "size_t" */
index 63519ef..6b52fe7 100644 (file)
@@ -1,10 +1,10 @@
-/*     $OpenBSD: syscallargs.h,v 1.266 2023/05/18 10:24:28 mvs Exp $   */
+/*     $OpenBSD: syscallargs.h,v 1.267 2023/07/24 19:33:29 miod Exp $  */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from;       OpenBSD: syscalls.master,v 1.248 2023/05/18 10:23:19 mvs Exp 
+ * created from;       OpenBSD: syscalls.master,v 1.249 2023/07/24 19:32:23 miod Exp 
  */
 
 #ifdef syscallarg
@@ -714,7 +714,7 @@ struct sys_adjtime_args {
 
 struct sys_getlogin_r_args {
        syscallarg(char *) namebuf;
-       syscallarg(u_int) namelen;
+       syscallarg(size_t) namelen;
 };
 
 struct sys_getthrname_args {