Regen for 7.99.23

This commit is contained in:
pgoyette 2015-11-30 22:48:53 +00:00
parent 0513b92c02
commit abe91b09e0
8 changed files with 26 additions and 28 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: init_sysent.c,v 1.301 2015/10/10 03:30:17 pgoyette Exp $ */
/* $NetBSD: init_sysent.c,v 1.302 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call switch table.
@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.301 2015/10/10 03:30:17 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.302 2015/11/30 22:48:53 pgoyette Exp $");
#include "opt_modular.h"
#include "opt_ntp.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscalls.c,v 1.290 2015/10/10 03:30:17 pgoyette Exp $ */
/* $NetBSD: syscalls.c,v 1.291 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call names.
@ -8,7 +8,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.290 2015/10/10 03:30:17 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.291 2015/11/30 22:48:53 pgoyette Exp $");
#if defined(_KERNEL_OPT)
#include "opt_modular.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscalls_autoload.c,v 1.8 2015/10/10 03:30:17 pgoyette Exp $ */
/* $NetBSD: syscalls_autoload.c,v 1.9 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call autoload table.
@ -8,12 +8,10 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.8 2015/10/10 03:30:17 pgoyette Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.9 2015/11/30 22:48:53 pgoyette Exp $");
static struct {
u_int al_code;
const char *al_module;
} const syscalls_autoload[] = {
#include <sys/proc.h>
static struct sc_auto netbsd_syscalls_autoload[] = {
{ SYS_compat_50_wait4, "compat" },
{ SYS_compat_43_ocreat, "compat" },
{ SYS_compat_50_mknod, "compat" },
@ -178,4 +176,5 @@ static struct {
{ SYS_____semctl50, "sysv_ipc" },
{ SYS___shmctl50, "sysv_ipc" },
{ SYS___msgctl50, "sysv_ipc" },
\t { 0, NULL }
};

View File

@ -1,4 +1,4 @@
/* $NetBSD: systrace_args.c,v 1.9 2015/10/10 03:30:17 pgoyette Exp $ */
/* $NetBSD: systrace_args.c,v 1.10 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call argument to DTrace register array converstion.

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump_syscalls.h,v 1.91 2015/10/10 03:30:18 pgoyette Exp $ */
/* $NetBSD: rump_syscalls.h,v 1.92 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call protos in rump namespace.

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump_syscalls.c,v 1.117 2015/10/14 01:33:32 christos Exp $ */
/* $NetBSD: rump_syscalls.c,v 1.118 2015/11/30 22:48:54 pgoyette Exp $ */
/*
* System call vector and marshalling for rump.
@ -15,7 +15,7 @@
#ifdef __NetBSD__
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.117 2015/10/14 01:33:32 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.118 2015/11/30 22:48:54 pgoyette Exp $");
#include <sys/fstypes.h>
#include <sys/proc.h>
@ -392,7 +392,7 @@ rump___sysimpl_getpid(void )
register_t retval[2];
pid_t rv = -1;
(void)rsys_syscall(SYS_getpid, NULL, 0, retval);
rsys_syscall(SYS_getpid, NULL, 0, retval);
if (sizeof(pid_t) > sizeof(register_t))
rv = *(pid_t *)retval;
else
@ -469,7 +469,7 @@ rump___sysimpl_getuid(void )
register_t retval[2];
uid_t rv = -1;
(void)rsys_syscall(SYS_getuid, NULL, 0, retval);
rsys_syscall(SYS_getuid, NULL, 0, retval);
if (sizeof(uid_t) > sizeof(register_t))
rv = *(uid_t *)retval;
else
@ -489,7 +489,7 @@ rump___sysimpl_geteuid(void )
register_t retval[2];
uid_t rv = -1;
(void)rsys_syscall(SYS_geteuid, NULL, 0, retval);
rsys_syscall(SYS_geteuid, NULL, 0, retval);
if (sizeof(uid_t) > sizeof(register_t))
rv = *(uid_t *)retval;
else
@ -778,7 +778,7 @@ rump___sysimpl_sync(void )
{
register_t retval[2];
(void)rsys_syscall(SYS_sync, NULL, 0, retval);
rsys_syscall(SYS_sync, NULL, 0, retval);
}
#ifdef RUMP_KERNEL_IS_LIBC
__weak_alias(sync,rump___sysimpl_sync);
@ -793,7 +793,7 @@ rump___sysimpl_getppid(void )
register_t retval[2];
pid_t rv = -1;
(void)rsys_syscall(SYS_getppid, NULL, 0, retval);
rsys_syscall(SYS_getppid, NULL, 0, retval);
if (sizeof(pid_t) > sizeof(register_t))
rv = *(pid_t *)retval;
else
@ -841,7 +841,7 @@ rump___sysimpl_getegid(void )
register_t retval[2];
gid_t rv = -1;
(void)rsys_syscall(SYS_getegid, NULL, 0, retval);
rsys_syscall(SYS_getegid, NULL, 0, retval);
if (sizeof(gid_t) > sizeof(register_t))
rv = *(gid_t *)retval;
else
@ -892,7 +892,7 @@ rump___sysimpl_getgid(void )
register_t retval[2];
gid_t rv = -1;
(void)rsys_syscall(SYS_getgid, NULL, 0, retval);
rsys_syscall(SYS_getgid, NULL, 0, retval);
if (sizeof(gid_t) > sizeof(register_t))
rv = *(gid_t *)retval;
else
@ -3379,7 +3379,7 @@ rump___sysimpl_issetugid(void )
register_t retval[2];
int rv = -1;
(void)rsys_syscall(SYS_issetugid, NULL, 0, retval);
rsys_syscall(SYS_issetugid, NULL, 0, retval);
if (sizeof(int) > sizeof(register_t))
rv = *(int *)retval;
else
@ -4977,7 +4977,7 @@ rump___sysimpl_posix_fadvise50(int fd, off_t offset, off_t len, int advice)
SPARG(&callarg, len) = len;
SPARG(&callarg, advice) = advice;
(void)rsys_syscall(SYS___posix_fadvise50, &callarg, sizeof(callarg), retval);
rsys_syscall(SYS___posix_fadvise50, &callarg, sizeof(callarg), retval);
if (sizeof(int) > sizeof(register_t))
rv = *(int *)retval;
else
@ -6417,8 +6417,7 @@ rump___sysimpl_clock_nanosleep(clockid_t clock_id, int flags, const struct times
SPARG(&callarg, rqtp) = rqtp;
SPARG(&callarg, rmtp) = rmtp;
(void)rsys_syscall(SYS_clock_nanosleep, &callarg, sizeof(callarg),
retval);
rsys_syscall(SYS_clock_nanosleep, &callarg, sizeof(callarg), retval);
if (sizeof(int) > sizeof(register_t))
rv = *(int *)retval;
else
@ -6445,7 +6444,7 @@ rump___sysimpl_posix_fallocate(int fd, off_t pos, off_t len)
SPARG(&callarg, pos) = pos;
SPARG(&callarg, len) = len;
(void)rsys_syscall(SYS_posix_fallocate, &callarg, sizeof(callarg), retval);
rsys_syscall(SYS_posix_fallocate, &callarg, sizeof(callarg), retval);
if (sizeof(int) > sizeof(register_t))
rv = *(int *)retval;
else

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscall.h,v 1.285 2015/10/10 03:30:17 pgoyette Exp $ */
/* $NetBSD: syscall.h,v 1.286 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call numbers.

View File

@ -1,4 +1,4 @@
/* $NetBSD: syscallargs.h,v 1.269 2015/10/10 03:30:17 pgoyette Exp $ */
/* $NetBSD: syscallargs.h,v 1.270 2015/11/30 22:48:53 pgoyette Exp $ */
/*
* System call argument lists.