Regen for changes related to separation of compat_sysv syscalls into a

separate module.
This commit is contained in:
pgoyette 2015-05-10 08:13:41 +00:00
parent fb37507887
commit 5608b80ca0
8 changed files with 28 additions and 28 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.295 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: init_sysent.c,v 1.296 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.295 2015/05/09 06:06:14 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.296 2015/05/10 08:13:41 pgoyette Exp $");
#include "opt_modular.h"
#include "opt_ntp.h"

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls.c,v 1.284 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: syscalls.c,v 1.285 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.284 2015/05/09 06:06:14 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.285 2015/05/10 08:13:41 pgoyette Exp $");
#if defined(_KERNEL_OPT)
#include "opt_modular.h"

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls_autoload.c,v 1.2 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: syscalls_autoload.c,v 1.3 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call autoload table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.2 2015/05/09 06:06:14 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.3 2015/05/10 08:13:41 pgoyette Exp $");
static struct {
u_int al_code;
@ -78,15 +78,15 @@ static struct {
{ SYS_compat_09_osetdomainname, "compat" },
{ SYS_compat_09_ouname, "compat" },
#if !defined(_LP64)
{ SYS_compat_10_osemsys, "compat" },
{ SYS_compat_10_osemsys, "compat_sysv" },
#else
#endif
#if !defined(_LP64)
{ SYS_compat_10_omsgsys, "compat" },
{ SYS_compat_10_omsgsys, "compat_sysv" },
#else
#endif
#if !defined(_LP64)
{ SYS_compat_10_oshmsys, "compat" },
{ SYS_compat_10_oshmsys, "compat_sysv" },
#else
#endif
{ SYS_lfs_bmapv, "lfs" },
@ -99,9 +99,9 @@ static struct {
{ SYS_compat_12_getdirentries, "compat" },
{ SYS_compat_50_futimes, "compat" },
{ SYS_afssys, "openafs" },
{ SYS_compat_14___semctl, "compat" },
{ SYS_compat_14_msgctl, "compat" },
{ SYS_compat_14_shmctl, "compat" },
{ SYS_compat_14___semctl, "compat_sysv" },
{ SYS_compat_14_msgctl, "compat_sysv" },
{ SYS_compat_14_shmctl, "compat_sysv" },
{ SYS_compat_50_clock_gettime, "compat" },
{ SYS_compat_50_clock_settime, "compat" },
{ SYS_compat_50_clock_getres, "compat" },
@ -139,9 +139,9 @@ static struct {
{ SYS_compat_30_fhopen, "compat" },
{ SYS_compat_30_fhstat, "compat" },
{ SYS_compat_20_fhstatfs, "compat" },
{ SYS_compat_50_____semctl13, "compat" },
{ SYS_compat_50___msgctl13, "compat" },
{ SYS_compat_50___shmctl13, "compat" },
{ SYS_compat_50_____semctl13, "compat_sysv" },
{ SYS_compat_50___msgctl13, "compat_sysv" },
{ SYS_compat_50___shmctl13, "compat_sysv" },
{ SYS_compat_50__lwp_park, "compat" },
{ SYS_compat_50_kevent, "compat" },
{ SYS_compat_30_fhstatvfs1, "compat" },

View File

@ -1,4 +1,4 @@
/* $NetBSD: systrace_args.c,v 1.4 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: systrace_args.c,v 1.5 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call argument to DTrace register array converstion.

View File

@ -1,10 +1,10 @@
/* $NetBSD: rump_syscalls.h,v 1.85 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: rump_syscalls.h,v 1.86 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call protos in rump namespace.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#ifndef _RUMP_RUMP_SYSCALLS_H_

View File

@ -1,10 +1,10 @@
/* $NetBSD: rump_syscalls.c,v 1.110 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: rump_syscalls.c,v 1.111 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call vector and marshalling for rump.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#ifdef RUMP_CLIENT
@ -15,7 +15,7 @@
#ifdef __NetBSD__
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.110 2015/05/09 06:06:14 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.111 2015/05/10 08:13:41 pgoyette Exp $");
#include <sys/fstypes.h>
#include <sys/proc.h>

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.279 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: syscall.h,v 1.280 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#ifndef _SYS_SYSCALL_H_

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.263 2015/05/09 06:06:14 pgoyette Exp $ */
/* $NetBSD: syscallargs.h,v 1.264 2015/05/10 08:13:41 pgoyette Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.275 2015/05/09 06:04:13 pgoyette Exp
* created from NetBSD: syscalls.master,v 1.276 2015/05/10 07:41:15 pgoyette Exp
*/
#ifndef _SYS_SYSCALLARGS_H_