Regenerate
This commit is contained in:
parent
ec22bfc3c9
commit
16691bd24e
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: init_sysent.c,v 1.283 2014/04/27 15:11:22 pooka Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.284 2014/06/12 21:42:26 joerg Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.269 2014/06/12 21:41:33 joerg Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.283 2014/04/27 15:11:22 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.284 2014/06/12 21:42:26 joerg Exp $");
|
||||
|
||||
#include "opt_modular.h"
|
||||
#include "opt_ntp.h"
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: syscalls.c,v 1.274 2014/04/27 15:11:22 pooka Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.275 2014/06/12 21:42:26 joerg Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.269 2014/06/12 21:41:33 joerg Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.274 2014/04/27 15:11:22 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.275 2014/06/12 21:42:26 joerg Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_modular.h"
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: rump_syscalls.c,v 1.100 2014/04/27 15:11:23 pooka Exp $ */
|
||||
/* $NetBSD: rump_syscalls.c,v 1.101 2014/06/12 21:42:26 joerg Exp $ */
|
||||
|
||||
/*
|
||||
* System call vector and marshalling for rump.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.269 2014/06/12 21:41:33 joerg Exp
|
||||
*/
|
||||
|
||||
#ifdef RUMP_CLIENT
|
||||
|
@ -15,7 +15,7 @@
|
|||
|
||||
#ifdef __NetBSD__
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.100 2014/04/27 15:11:23 pooka Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: rump_syscalls.c,v 1.101 2014/06/12 21:42:26 joerg Exp $");
|
||||
|
||||
#include <sys/fstypes.h>
|
||||
#include <sys/proc.h>
|
||||
|
@ -2049,7 +2049,7 @@ rsys_aliases(ftruncate,rump___sysimpl_ftruncate);
|
|||
|
||||
int rump___sysimpl___sysctl(const int *, u_int, void *, size_t *, const void *, size_t);
|
||||
int
|
||||
rump___sysimpl___sysctl(const int * name, u_int namelen, void * old, size_t * oldlenp, const void * new, size_t newlen)
|
||||
rump___sysimpl___sysctl(const int * name, u_int namelen, void * oldv, size_t * oldlenp, const void * newv, size_t newlen)
|
||||
{
|
||||
register_t retval[2];
|
||||
int error = 0;
|
||||
|
@ -2059,9 +2059,9 @@ rump___sysimpl___sysctl(const int * name, u_int namelen, void * old, size_t * ol
|
|||
memset(&callarg, 0, sizeof(callarg));
|
||||
SPARG(&callarg, name) = name;
|
||||
SPARG(&callarg, namelen) = namelen;
|
||||
SPARG(&callarg, old) = old;
|
||||
SPARG(&callarg, oldv) = oldv;
|
||||
SPARG(&callarg, oldlenp) = oldlenp;
|
||||
SPARG(&callarg, new) = new;
|
||||
SPARG(&callarg, newv) = newv;
|
||||
SPARG(&callarg, newlen) = newlen;
|
||||
|
||||
error = rsys_syscall(SYS___sysctl, &callarg, sizeof(callarg), retval);
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscall.h,v 1.270 2014/04/27 15:11:22 pooka Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.271 2014/06/12 21:42:26 joerg Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.269 2014/06/12 21:41:33 joerg Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALL_H_
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscallargs.h,v 1.253 2014/04/27 15:11:22 pooka Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.254 2014/06/12 21:42:26 joerg Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp
|
||||
* created from NetBSD: syscalls.master,v 1.269 2014/06/12 21:41:33 joerg Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALLARGS_H_
|
||||
|
@ -1248,9 +1248,9 @@ check_syscall_args(sys_ftruncate)
|
|||
struct sys___sysctl_args {
|
||||
syscallarg(const int *) name;
|
||||
syscallarg(u_int) namelen;
|
||||
syscallarg(void *) old;
|
||||
syscallarg(void *) oldv;
|
||||
syscallarg(size_t *) oldlenp;
|
||||
syscallarg(const void *) new;
|
||||
syscallarg(const void *) newv;
|
||||
syscallarg(size_t) newlen;
|
||||
};
|
||||
check_syscall_args(sys___sysctl)
|
||||
|
@ -2094,8 +2094,8 @@ check_syscall_args(sys__lwp_ctl)
|
|||
|
||||
#ifndef RUMP_CLIENT
|
||||
struct compat_60_sys_sa_register_args {
|
||||
syscallarg(void *) new;
|
||||
syscallarg(void **) old;
|
||||
syscallarg(void *) newv;
|
||||
syscallarg(void **) oldv;
|
||||
syscallarg(int) flags;
|
||||
syscallarg(ssize_t) stackinfo_offset;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue