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

(Apparently forgotten.)

"Treat valsize as unsigned"
This commit is contained in:
dholland 2020-06-11 03:47:05 +00:00
parent a3e1f5bd7e
commit c76c804434
4 changed files with 12 additions and 12 deletions

View File

@ -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" */

View File

@ -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 @@ struct sunos_sys_setsockopt_args {
syscallarg(int) level;
syscallarg(int) name;
syscallarg(void *) val;
syscallarg(int) valsize;
syscallarg(u_int) valsize;
};
check_syscall_args(sunos_sys_setsockopt)

View File

@ -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)

View File

@ -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"