Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/sunos Regen after -r1.82 of compat_sunos syscalls...



details:   https://anonhg.NetBSD.org/src/rev/c9fcb152ceec
branches:  trunk
changeset: 934392:c9fcb152ceec
user:      dholland <dholland%NetBSD.org@localhost>
date:      Thu Jun 11 03:47:05 2020 +0000

description:
Regen after -r1.82 of compat_sunos syscalls.master last September.

(Apparently forgotten.)

"Treat valsize as unsigned"

diffstat:

 sys/compat/sunos/sunos_syscall.h     |  6 +++---
 sys/compat/sunos/sunos_syscallargs.h |  6 +++---
 sys/compat/sunos/sunos_syscalls.c    |  6 +++---
 sys/compat/sunos/sunos_sysent.c      |  6 +++---
 4 files changed, 12 insertions(+), 12 deletions(-)

diffs (92 lines):

diff -r e551fc23265f -r c9fcb152ceec sys/compat/sunos/sunos_syscall.h
--- a/sys/compat/sunos/sunos_syscall.h  Thu Jun 11 03:45:30 2020 +0000
+++ b/sys/compat/sunos/sunos_syscall.h  Thu Jun 11 03:47:05 2020 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos_syscall.h,v 1.98 2019/01/27 02:08:40 pgoyette Exp $ */
+/* $NetBSD: sunos_syscall.h,v 1.99 2020/06/11 03:47:05 dholland Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.82 2019/09/23 20:42:29 christos Exp
  */
 
 #ifndef _SUNOS_SYS_SYSCALL_H_
@@ -245,7 +245,7 @@
 /* syscall: "bind" ret: "int" args: "int" "void *" "int" */
 #define        SUNOS_SYS_bind  104
 
-/* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "void *" "int" */
+/* syscall: "setsockopt" ret: "int" args: "int" "int" "int" "void *" "u_int" */
 #define        SUNOS_SYS_setsockopt    105
 
 /* syscall: "listen" ret: "int" args: "int" "int" */
diff -r e551fc23265f -r c9fcb152ceec sys/compat/sunos/sunos_syscallargs.h
--- a/sys/compat/sunos/sunos_syscallargs.h      Thu Jun 11 03:45:30 2020 +0000
+++ b/sys/compat/sunos/sunos_syscallargs.h      Thu Jun 11 03:47:05 2020 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: sunos_syscallargs.h,v 1.82 2019/01/27 02:08:40 pgoyette Exp $ */
+/* $NetBSD: sunos_syscallargs.h,v 1.83 2020/06/11 03:47:05 dholland Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.82 2019/09/23 20:42:29 christos Exp
  */
 
 #ifndef _SUNOS_SYS_SYSCALLARGS_H_
@@ -246,7 +246,7 @@
        syscallarg(int) level;
        syscallarg(int) name;
        syscallarg(void *) val;
-       syscallarg(int) valsize;
+       syscallarg(u_int) valsize;
 };
 check_syscall_args(sunos_sys_setsockopt)
 
diff -r e551fc23265f -r c9fcb152ceec sys/compat/sunos/sunos_syscalls.c
--- a/sys/compat/sunos/sunos_syscalls.c Thu Jun 11 03:45:30 2020 +0000
+++ b/sys/compat/sunos/sunos_syscalls.c Thu Jun 11 03:47:05 2020 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: sunos_syscalls.c,v 1.97 2019/01/27 02:08:40 pgoyette Exp $ */
+/* $NetBSD: sunos_syscalls.c,v 1.98 2020/06/11 03:47:05 dholland Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.82 2019/09/23 20:42:29 christos Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_syscalls.c,v 1.97 2019/01/27 02:08:40 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_syscalls.c,v 1.98 2020/06/11 03:47:05 dholland Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
diff -r e551fc23265f -r c9fcb152ceec sys/compat/sunos/sunos_sysent.c
--- a/sys/compat/sunos/sunos_sysent.c   Thu Jun 11 03:45:30 2020 +0000
+++ b/sys/compat/sunos/sunos_sysent.c   Thu Jun 11 03:47:05 2020 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: sunos_sysent.c,v 1.93 2019/01/27 02:08:40 pgoyette Exp $ */
+/* $NetBSD: sunos_sysent.c,v 1.94 2020/06/11 03:47:05 dholland Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.80.2.2 2018/09/29 02:29:42 pgoyette Exp
+ * created from        NetBSD: syscalls.master,v 1.82 2019/09/23 20:42:29 christos Exp
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunos_sysent.c,v 1.93 2019/01/27 02:08:40 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunos_sysent.c,v 1.94 2020/06/11 03:47:05 dholland Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_sysv.h"



Home | Main Index | Thread Index | Old Index