Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys regen for "struct sigaltstack" -> "stack_t"
details: https://anonhg.NetBSD.org/src/rev/187a7fd0ca33
branches: trunk
changeset: 1024726:187a7fd0ca33
user: thorpej <thorpej%NetBSD.org@localhost>
date: Mon Nov 01 05:26:27 2021 +0000
description:
regen for "struct sigaltstack" -> "stack_t"
diffstat:
sys/kern/init_sysent.c | 6 +++---
sys/kern/syscalls.c | 6 +++---
sys/kern/syscalls_autoload.c | 6 +++---
sys/kern/systrace_args.c | 14 +++++++-------
sys/rump/include/rump/rump_syscalls.h | 4 ++--
sys/rump/librump/rumpkern/rump_syscalls.c | 6 +++---
sys/sys/syscall.h | 6 +++---
sys/sys/syscallargs.h | 8 ++++----
8 files changed, 28 insertions(+), 28 deletions(-)
diffs (191 lines):
diff -r 448802ab8565 -r 187a7fd0ca33 sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/kern/init_sysent.c Mon Nov 01 05:26:27 2021 +0000
@@ -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"
diff -r 448802ab8565 -r 187a7fd0ca33 sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/kern/syscalls.c Mon Nov 01 05:26:27 2021 +0000
@@ -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
diff -r 448802ab8565 -r 187a7fd0ca33 sys/kern/syscalls_autoload.c
--- a/sys/kern/syscalls_autoload.c Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/kern/syscalls_autoload.c Mon Nov 01 05:26:27 2021 +0000
@@ -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"
diff -r 448802ab8565 -r 187a7fd0ca33 sys/kern/systrace_args.c
--- a/sys/kern/systrace_args.c Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/kern/systrace_args.c Mon Nov 01 05:26:27 2021 +0000
@@ -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 @@
/* 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 @@
case 281:
switch(ndx) {
case 0:
- p = "const struct sigaltstack *";
- break;
- case 1:
- p = "struct sigaltstack *";
+ p = "const stack_t *";
+ break;
+ case 1:
+ p = "stack_t *";
break;
default:
break;
diff -r 448802ab8565 -r 187a7fd0ca33 sys/rump/include/rump/rump_syscalls.h
--- a/sys/rump/include/rump/rump_syscalls.h Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/rump/include/rump/rump_syscalls.h Mon Nov 01 05:26:27 2021 +0000
@@ -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_
diff -r 448802ab8565 -r 187a7fd0ca33 sys/rump/librump/rumpkern/rump_syscalls.c
--- a/sys/rump/librump/rumpkern/rump_syscalls.c Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/rump/librump/rumpkern/rump_syscalls.c Mon Nov 01 05:26:27 2021 +0000
@@ -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>
diff -r 448802ab8565 -r 187a7fd0ca33 sys/sys/syscall.h
--- a/sys/sys/syscall.h Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/sys/syscall.h Mon Nov 01 05:26:27 2021 +0000
@@ -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: */
diff -r 448802ab8565 -r 187a7fd0ca33 sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h Mon Nov 01 05:07:15 2021 +0000
+++ b/sys/sys/syscallargs.h Mon Nov 01 05:26:27 2021 +0000
@@ -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 @@
#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 */
Home |
Main Index |
Thread Index |
Old Index