regen
This commit is contained in:
parent
7e40a36c7f
commit
0dd1fb3d17
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: aoutm68k_syscall.h,v 1.13 2003/09/22 14:32:15 cl Exp $ */
|
||||
/* $NetBSD: aoutm68k_syscall.h,v 1.14 2003/09/23 18:32:12 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.9 2003/09/22 14:31:27 cl Exp
|
||||
* created from NetBSD: syscalls.master,v 1.10 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
|
@ -1042,9 +1042,13 @@
|
|||
/* syscall: "pwritev" ret: "ssize_t" args: "int" "const struct iovec *" "int" "int" "off_t" */
|
||||
#define AOUTM68K_SYS_pwritev 290
|
||||
|
||||
#ifdef COMPAT_16
|
||||
/* syscall: "__sigaction14" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" */
|
||||
#define AOUTM68K_SYS___sigaction14 291
|
||||
|
||||
#else
|
||||
/* 291 is excluded compat_16_sys___sigaction14 */
|
||||
#endif
|
||||
/* syscall: "__sigpending14" ret: "int" args: "sigset_t *" */
|
||||
#define AOUTM68K_SYS___sigpending14 292
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: aoutm68k_syscallargs.h,v 1.12 2003/09/22 14:32:16 cl Exp $ */
|
||||
/* $NetBSD: aoutm68k_syscallargs.h,v 1.13 2003/09/23 18:32:12 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.9 2003/09/22 14:31:27 cl Exp
|
||||
* created from NetBSD: syscalls.master,v 1.10 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
#ifndef _AOUTM68K_SYS__SYSCALLARGS_H_
|
||||
|
@ -405,6 +405,9 @@ struct aoutm68k_sys___posix_chown_args {
|
|||
#ifdef COMPAT_16
|
||||
#else
|
||||
#endif
|
||||
#ifdef COMPAT_16
|
||||
#else
|
||||
#endif
|
||||
|
||||
struct aoutm68k_sys_fhstat_args {
|
||||
syscallarg(const fhandle_t *) fhp;
|
||||
|
@ -871,7 +874,10 @@ int sys_fktrace(struct lwp *, void *, register_t *);
|
|||
#endif
|
||||
int sys_preadv(struct lwp *, void *, register_t *);
|
||||
int sys_pwritev(struct lwp *, void *, register_t *);
|
||||
int sys___sigaction14(struct lwp *, void *, register_t *);
|
||||
#ifdef COMPAT_16
|
||||
int compat_16_sys___sigaction14(struct lwp *, void *, register_t *);
|
||||
#else
|
||||
#endif
|
||||
int sys___sigpending14(struct lwp *, void *, register_t *);
|
||||
int sys___sigprocmask14(struct lwp *, void *, register_t *);
|
||||
int sys___sigsuspend14(struct lwp *, void *, register_t *);
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: aoutm68k_syscalls.c,v 1.12 2003/09/22 14:32:16 cl Exp $ */
|
||||
/* $NetBSD: aoutm68k_syscalls.c,v 1.13 2003/09/23 18:32:13 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.9 2003/09/22 14:31:27 cl Exp
|
||||
* created from NetBSD: syscalls.master,v 1.10 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aoutm68k_syscalls.c,v 1.12 2003/09/22 14:32:16 cl Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aoutm68k_syscalls.c,v 1.13 2003/09/23 18:32:13 cl Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#if defined(_KERNEL_OPT)
|
||||
|
@ -625,7 +625,11 @@ const char *const aoutm68k_syscallnames[] = {
|
|||
#endif
|
||||
"preadv", /* 289 = preadv */
|
||||
"pwritev", /* 290 = pwritev */
|
||||
#ifdef COMPAT_16
|
||||
"__sigaction14", /* 291 = __sigaction14 */
|
||||
#else
|
||||
"#291 (excluded compat_16_sys___sigaction14)", /* 291 = excluded compat_16_sys___sigaction14 */
|
||||
#endif
|
||||
"__sigpending14", /* 292 = __sigpending14 */
|
||||
"__sigprocmask14", /* 293 = __sigprocmask14 */
|
||||
"__sigsuspend14", /* 294 = __sigsuspend14 */
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: aoutm68k_sysent.c,v 1.13 2003/09/22 14:32:17 cl Exp $ */
|
||||
/* $NetBSD: aoutm68k_sysent.c,v 1.14 2003/09/23 18:32:13 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.9 2003/09/22 14:31:27 cl Exp
|
||||
* created from NetBSD: syscalls.master,v 1.10 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: aoutm68k_sysent.c,v 1.13 2003/09/22 14:32:17 cl Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: aoutm68k_sysent.c,v 1.14 2003/09/23 18:32:13 cl Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ktrace.h"
|
||||
|
@ -1030,8 +1030,13 @@ struct sysent aoutm68k_sysent[] = {
|
|||
sys_preadv }, /* 289 = preadv */
|
||||
{ 5, s(struct sys_pwritev_args), 0,
|
||||
sys_pwritev }, /* 290 = pwritev */
|
||||
{ 3, s(struct sys___sigaction14_args), 0,
|
||||
sys___sigaction14 }, /* 291 = __sigaction14 */
|
||||
#ifdef COMPAT_16
|
||||
{ 3, s(struct compat_16_sys___sigaction14_args), 0,
|
||||
compat_16_sys___sigaction14 }, /* 291 = __sigaction14 */
|
||||
#else
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 291 = excluded compat_16_sys___sigaction14 */
|
||||
#endif
|
||||
{ 1, s(struct sys___sigpending14_args), 0,
|
||||
sys___sigpending14 }, /* 292 = __sigpending14 */
|
||||
{ 3, s(struct sys___sigprocmask14_args), 0,
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: pecoff_syscall.h,v 1.7 2003/09/12 02:10:55 christos Exp $ */
|
||||
/* $NetBSD: pecoff_syscall.h,v 1.8 2003/09/23 18:32:13 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.7 2003/09/12 02:10:33 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.8 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
/* syscall: "syscall" ret: "int" args: "int" "..." */
|
||||
|
@ -722,9 +722,13 @@
|
|||
/* syscall: "pwritev" ret: "ssize_t" args: "int" "const struct iovec *" "int" "int" "off_t" */
|
||||
#define PECOFF_SYS_pwritev 290
|
||||
|
||||
#ifdef COMPAT_16
|
||||
/* syscall: "__sigaction14" ret: "int" args: "int" "const struct sigaction *" "struct sigaction *" */
|
||||
#define PECOFF_SYS___sigaction14 291
|
||||
|
||||
#else
|
||||
/* 291 is excluded compat_16_sys___sigaction14 */
|
||||
#endif
|
||||
/* syscall: "__sigpending14" ret: "int" args: "sigset_t *" */
|
||||
#define PECOFF_SYS___sigpending14 292
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: pecoff_syscallargs.h,v 1.8 2003/09/12 02:10:55 christos Exp $ */
|
||||
/* $NetBSD: pecoff_syscallargs.h,v 1.9 2003/09/23 18:32:13 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.7 2003/09/12 02:10:33 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.8 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
#ifndef _PECOFF_SYS__SYSCALLARGS_H_
|
||||
|
@ -226,6 +226,9 @@ struct pecoff_sys___posix_lchown_args {
|
|||
#if defined(KTRACE) || !defined(_KERNEL)
|
||||
#else
|
||||
#endif
|
||||
#ifdef COMPAT_16
|
||||
#else
|
||||
#endif
|
||||
#ifdef __HAVE_SIGINFO
|
||||
#else
|
||||
#endif
|
||||
|
@ -491,7 +494,10 @@ int sys_fktrace(struct lwp *, void *, register_t *);
|
|||
#endif
|
||||
int sys_preadv(struct lwp *, void *, register_t *);
|
||||
int sys_pwritev(struct lwp *, void *, register_t *);
|
||||
int sys___sigaction14(struct lwp *, void *, register_t *);
|
||||
#ifdef COMPAT_16
|
||||
int compat_16_sys___sigaction14(struct lwp *, void *, register_t *);
|
||||
#else
|
||||
#endif
|
||||
int sys___sigpending14(struct lwp *, void *, register_t *);
|
||||
int sys___sigprocmask14(struct lwp *, void *, register_t *);
|
||||
int sys___sigsuspend14(struct lwp *, void *, register_t *);
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: pecoff_syscalls.c,v 1.7 2003/09/12 02:10:56 christos Exp $ */
|
||||
/* $NetBSD: pecoff_syscalls.c,v 1.8 2003/09/23 18:32:13 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.7 2003/09/12 02:10:33 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.8 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pecoff_syscalls.c,v 1.7 2003/09/12 02:10:56 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pecoff_syscalls.c,v 1.8 2003/09/23 18:32:13 cl Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#if defined(_KERNEL_OPT)
|
||||
|
@ -417,7 +417,11 @@ const char *const pecoff_syscallnames[] = {
|
|||
#endif
|
||||
"preadv", /* 289 = preadv */
|
||||
"pwritev", /* 290 = pwritev */
|
||||
#ifdef COMPAT_16
|
||||
"__sigaction14", /* 291 = __sigaction14 */
|
||||
#else
|
||||
"#291 (excluded compat_16_sys___sigaction14)", /* 291 = excluded compat_16_sys___sigaction14 */
|
||||
#endif
|
||||
"__sigpending14", /* 292 = __sigpending14 */
|
||||
"__sigprocmask14", /* 293 = __sigprocmask14 */
|
||||
"__sigsuspend14", /* 294 = __sigsuspend14 */
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: pecoff_sysent.c,v 1.8 2003/09/12 02:10:56 christos Exp $ */
|
||||
/* $NetBSD: pecoff_sysent.c,v 1.9 2003/09/23 18:32:13 cl Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.7 2003/09/12 02:10:33 christos Exp
|
||||
* created from NetBSD: syscalls.master,v 1.8 2003/09/23 18:31:03 cl Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: pecoff_sysent.c,v 1.8 2003/09/12 02:10:56 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: pecoff_sysent.c,v 1.9 2003/09/23 18:32:13 cl Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ktrace.h"
|
||||
|
@ -754,8 +754,13 @@ struct sysent pecoff_sysent[] = {
|
|||
sys_preadv }, /* 289 = preadv */
|
||||
{ 5, s(struct sys_pwritev_args), 0,
|
||||
sys_pwritev }, /* 290 = pwritev */
|
||||
{ 3, s(struct sys___sigaction14_args), 0,
|
||||
sys___sigaction14 }, /* 291 = __sigaction14 */
|
||||
#ifdef COMPAT_16
|
||||
{ 3, s(struct compat_16_sys___sigaction14_args), 0,
|
||||
compat_16_sys___sigaction14 }, /* 291 = __sigaction14 */
|
||||
#else
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 291 = excluded compat_16_sys___sigaction14 */
|
||||
#endif
|
||||
{ 1, s(struct sys___sigpending14_args), 0,
|
||||
sys___sigpending14 }, /* 292 = __sigpending14 */
|
||||
{ 3, s(struct sys___sigprocmask14_args), 0,
|
||||
|
|
Loading…
Reference in New Issue