regen for "struct sigaltstack" -> "stack_t"

This commit is contained in:
thorpej 2021-11-01 05:26:27 +00:00
parent 0a15a2c8dc
commit 1c0099b06d
8 changed files with 26 additions and 26 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.338 2021/09/19 15:52:04 thorpej Exp $ */
/* $NetBSD: init_sysent.c,v 1.339 2021/11/01 05:26:27 thorpej Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.338 2021/09/19 15:52:04 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.339 2021/11/01 05:26:27 thorpej Exp $");
#ifdef _KERNEL_OPT
#include "opt_modular.h"

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls.c,v 1.326 2021/09/19 15:52:04 thorpej Exp $ */
/* $NetBSD: syscalls.c,v 1.327 2021/11/01 05:26:27 thorpej Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.326 2021/09/19 15:52:04 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.327 2021/11/01 05:26:27 thorpej Exp $");
#if defined(_KERNEL_OPT)
#ifdef _KERNEL_OPT

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls_autoload.c,v 1.42 2021/09/19 15:52:04 thorpej Exp $ */
/* $NetBSD: syscalls_autoload.c,v 1.43 2021/11/01 05:26:27 thorpej Exp $ */
/*
* System call autoload table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.42 2021/09/19 15:52:04 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.43 2021/11/01 05:26:27 thorpej Exp $");
#ifdef _KERNEL_OPT
#include "opt_modular.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: systrace_args.c,v 1.48 2021/09/19 15:52:04 thorpej Exp $ */
/* $NetBSD: systrace_args.c,v 1.49 2021/11/01 05:26:27 thorpej Exp $ */
/*
* System call argument to DTrace register array conversion.
@ -2094,8 +2094,8 @@ systrace_args(register_t sysnum, const void *params, uintptr_t *uarg, size_t *n_
/* sys___sigaltstack14 */
case 281: {
const struct sys___sigaltstack14_args *p = params;
uarg[0] = (intptr_t) SCARG(p, nss); /* const struct sigaltstack * */
uarg[1] = (intptr_t) SCARG(p, oss); /* struct sigaltstack * */
uarg[0] = (intptr_t) SCARG(p, nss); /* const stack_t * */
uarg[1] = (intptr_t) SCARG(p, oss); /* stack_t * */
*n_args = 2;
break;
}
@ -7345,10 +7345,10 @@ systrace_entry_setargdesc(int sysnum, int ndx, char *desc, size_t descsz)
case 281:
switch(ndx) {
case 0:
p = "const struct sigaltstack *";
p = "const stack_t *";
break;
case 1:
p = "struct sigaltstack *";
p = "stack_t *";
break;
default:
break;

View File

@ -1,10 +1,10 @@
/* $NetBSD: rump_syscalls.h,v 1.125 2021/09/19 15:52:04 thorpej Exp $ */
/* $NetBSD: rump_syscalls.h,v 1.126 2021/11/01 05:26:28 thorpej Exp $ */
/*
* System call protos in rump namespace.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#ifndef _RUMP_RUMP_SYSCALLS_H_

View File

@ -1,10 +1,10 @@
/* $NetBSD: rump_syscalls.c,v 1.156 2021/09/19 15:52:04 thorpej Exp $ */
/* $NetBSD: rump_syscalls.c,v 1.157 2021/11/01 05:26:28 thorpej Exp $ */
/*
* System call vector and marshalling for rump.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#ifdef RUMP_CLIENT
@ -15,7 +15,7 @@
#ifdef __NetBSD__
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.156 2021/09/19 15:52:04 thorpej Exp $");
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.157 2021/11/01 05:26:28 thorpej Exp $");
#include <sys/fstypes.h>
#include <sys/proc.h>

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.320 2021/09/19 15:52:05 thorpej Exp $ */
/* $NetBSD: syscall.h,v 1.321 2021/11/01 05:26:27 thorpej Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#ifndef _SYS_SYSCALL_H_
@ -789,7 +789,7 @@
/* syscall: "compat_30___lstat13" ret: "int" args: "const char *" "struct stat13 *" */
#define SYS_compat_30___lstat13 280
/* syscall: "__sigaltstack14" ret: "int" args: "const struct sigaltstack *" "struct sigaltstack *" */
/* syscall: "__sigaltstack14" ret: "int" args: "const stack_t *" "stack_t *" */
#define SYS___sigaltstack14 281
/* syscall: "__vfork14" ret: "int" args: */

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.304 2021/09/19 15:52:05 thorpej Exp $ */
/* $NetBSD: syscallargs.h,v 1.305 2021/11/01 05:26:27 thorpej Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.308 2021/09/19 15:51:27 thorpej Exp
* created from NetBSD: syscalls.master,v 1.309 2021/11/01 05:07:17 thorpej Exp
*/
#ifndef _SYS_SYSCALLARGS_H_
@ -1831,8 +1831,8 @@ check_syscall_args(compat_30_sys___lstat13)
#ifndef RUMP_CLIENT
struct sys___sigaltstack14_args {
syscallarg(const struct sigaltstack *) nss;
syscallarg(struct sigaltstack *) oss;
syscallarg(const stack_t *) nss;
syscallarg(stack_t *) oss;
};
check_syscall_args(sys___sigaltstack14)
#endif /* !RUMP_CLIENT */