Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/netbsd32 Regen (posix_spawn)
details: https://anonhg.NetBSD.org/src/rev/a7d975cde2df
branches: trunk
changeset: 778680:a7d975cde2df
user: martin <martin%NetBSD.org@localhost>
date: Sun Apr 08 11:28:12 2012 +0000
description:
Regen (posix_spawn)
diffstat:
sys/compat/netbsd32/netbsd32_syscall.h | 9 ++++++---
sys/compat/netbsd32/netbsd32_syscallargs.h | 16 ++++++++++++++--
sys/compat/netbsd32/netbsd32_syscalls.c | 8 ++++----
sys/compat/netbsd32/netbsd32_sysent.c | 10 +++++-----
4 files changed, 29 insertions(+), 14 deletions(-)
diffs (129 lines):
diff -r b11f92faf993 -r a7d975cde2df sys/compat/netbsd32/netbsd32_syscall.h
--- a/sys/compat/netbsd32/netbsd32_syscall.h Sun Apr 08 11:27:44 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscall.h Sun Apr 08 11:28:12 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscall.h,v 1.102 2012/03/10 21:51:58 joerg Exp $ */
+/* $NetBSD: netbsd32_syscall.h,v 1.103 2012/04/08 11:28:12 martin Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.93 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.95 2012/04/08 11:27:44 martin Exp
*/
#ifndef _NETBSD32_SYS_SYSCALL_H_
@@ -1239,6 +1239,9 @@
/* syscall: "netbsd32___quotactl" ret: "int" args: "const netbsd32_charp" "netbsd32_voidp" */
#define NETBSD32_SYS_netbsd32___quotactl 473
-#define NETBSD32_SYS_MAXSYSCALL 474
+/* syscall: "netbsd32_posix_spawn" ret: "int" args: "netbsd32_pid_tp" "const netbsd32_charp" "const netbsd32_posix_spawn_file_actionsp" "const netbsd32_posix_spawnattrp" "netbsd32_charpp"
"netbsd32_charpp" */
+#define NETBSD32_SYS_netbsd32_posix_spawn 474
+
+#define NETBSD32_SYS_MAXSYSCALL 475
#define NETBSD32_SYS_NSYSENT 512
#endif /* _NETBSD32_SYS_SYSCALL_H_ */
diff -r b11f92faf993 -r a7d975cde2df sys/compat/netbsd32/netbsd32_syscallargs.h
--- a/sys/compat/netbsd32/netbsd32_syscallargs.h Sun Apr 08 11:27:44 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscallargs.h Sun Apr 08 11:28:12 2012 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: netbsd32_syscallargs.h,v 1.102 2012/03/10 21:51:58 joerg Exp $ */
+/* $NetBSD: netbsd32_syscallargs.h,v 1.103 2012/04/08 11:28:12 martin Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.93 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.95 2012/04/08 11:27:44 martin Exp
*/
#ifndef _NETBSD32_SYS_SYSCALLARGS_H_
@@ -2438,6 +2438,16 @@
};
check_syscall_args(netbsd32___quotactl)
+struct netbsd32_posix_spawn_args {
+ syscallarg(netbsd32_pid_tp) pid;
+ syscallarg(const netbsd32_charp) path;
+ syscallarg(const netbsd32_posix_spawn_file_actionsp) file_actions;
+ syscallarg(const netbsd32_posix_spawnattrp) attrp;
+ syscallarg(netbsd32_charpp) argv;
+ syscallarg(netbsd32_charpp) envp;
+};
+check_syscall_args(netbsd32_posix_spawn)
+
/*
* System call prototypes.
*/
@@ -3243,4 +3253,6 @@
int netbsd32___quotactl(struct lwp *, const struct netbsd32___quotactl_args *, register_t *);
+int netbsd32_posix_spawn(struct lwp *, const struct netbsd32_posix_spawn_args *, register_t *);
+
#endif /* _NETBSD32_SYS_SYSCALLARGS_H_ */
diff -r b11f92faf993 -r a7d975cde2df sys/compat/netbsd32/netbsd32_syscalls.c
--- a/sys/compat/netbsd32/netbsd32_syscalls.c Sun Apr 08 11:27:44 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_syscalls.c Sun Apr 08 11:28:12 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_syscalls.c,v 1.101 2012/03/10 21:51:58 joerg Exp $ */
+/* $NetBSD: netbsd32_syscalls.c,v 1.102 2012/04/08 11:28:12 martin Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.93 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.95 2012/04/08 11:27:44 martin Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.101 2012/03/10 21:51:58 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_syscalls.c,v 1.102 2012/04/08 11:28:12 martin Exp $");
#if defined(_KERNEL_OPT)
#if defined(_KERNEL_OPT)
@@ -571,7 +571,7 @@
/* 471 */ "netbsd32_unlinkat",
/* 472 */ "netbsd32_futimens",
/* 473 */ "netbsd32___quotactl",
- /* 474 */ "# filler",
+ /* 474 */ "netbsd32_posix_spawn",
/* 475 */ "# filler",
/* 476 */ "# filler",
/* 477 */ "# filler",
diff -r b11f92faf993 -r a7d975cde2df sys/compat/netbsd32/netbsd32_sysent.c
--- a/sys/compat/netbsd32/netbsd32_sysent.c Sun Apr 08 11:27:44 2012 +0000
+++ b/sys/compat/netbsd32/netbsd32_sysent.c Sun Apr 08 11:28:12 2012 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: netbsd32_sysent.c,v 1.101 2012/03/10 21:51:58 joerg Exp $ */
+/* $NetBSD: netbsd32_sysent.c,v 1.102 2012/04/08 11:28:13 martin Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.93 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.95 2012/04/08 11:27:44 martin Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.101 2012/03/10 21:51:58 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: netbsd32_sysent.c,v 1.102 2012/04/08 11:28:13 martin Exp $");
#if defined(_KERNEL_OPT)
#include "opt_compat_netbsd.h"
@@ -1150,8 +1150,8 @@
(sy_call_t *)netbsd32_futimens }, /* 472 = netbsd32_futimens */
{ ns(struct netbsd32___quotactl_args), 0,
(sy_call_t *)netbsd32___quotactl }, /* 473 = netbsd32___quotactl */
- { 0, 0, 0,
- sys_nosys }, /* 474 = filler */
+ { ns(struct netbsd32_posix_spawn_args), 0,
+ (sy_call_t *)netbsd32_posix_spawn },/* 474 = netbsd32_posix_spawn */
{ 0, 0, 0,
sys_nosys }, /* 475 = filler */
{ 0, 0, 0,
Home |
Main Index |
Thread Index |
Old Index