This commit is contained in:
christos 2005-05-29 21:11:30 +00:00
parent 44285e060d
commit b636cdfe8a
4 changed files with 12 additions and 12 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.163 2005/02/27 00:02:40 perry Exp $ */
/* $NetBSD: init_sysent.c,v 1.164 2005/05/29 21:11:30 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.145 2005/02/25 19:53:56 matt Exp
* created from NetBSD: syscalls.master,v 1.146 2005/05/29 21:07:49 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.163 2005/02/27 00:02:40 perry Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.164 2005/05/29 21:11:30 christos Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls.c,v 1.158 2005/02/27 00:02:40 perry Exp $ */
/* $NetBSD: syscalls.c,v 1.159 2005/05/29 21:11:30 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.145 2005/02/25 19:53:56 matt Exp
* created from NetBSD: syscalls.master,v 1.146 2005/05/29 21:07:49 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.158 2005/02/27 00:02:40 perry Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.159 2005/05/29 21:11:30 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.156 2005/02/27 00:03:25 perry Exp $ */
/* $NetBSD: syscall.h,v 1.157 2005/05/29 21:11:30 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.145 2005/02/25 19:53:56 matt Exp
* created from NetBSD: syscalls.master,v 1.146 2005/05/29 21:07:49 christos Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@ -768,7 +768,7 @@
/* syscall: "__posix_rename" ret: "int" args: "const char *" "const char *" */
#define SYS___posix_rename 270
/* syscall: "swapctl" ret: "int" args: "int" "const void *" "int" */
/* syscall: "swapctl" ret: "int" args: "int" "void *" "int" */
#define SYS_swapctl 271
/* syscall: "getdents" ret: "int" args: "int" "char *" "size_t" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.138 2005/02/27 00:03:25 perry Exp $ */
/* $NetBSD: syscallargs.h,v 1.139 2005/05/29 21:11:30 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.145 2005/02/25 19:53:56 matt Exp
* created from NetBSD: syscalls.master,v 1.146 2005/05/29 21:07:49 christos Exp
*/
#ifndef _SYS__SYSCALLARGS_H_
@ -1153,7 +1153,7 @@ struct sys___posix_rename_args {
struct sys_swapctl_args {
syscallarg(int) cmd;
syscallarg(const void *) arg;
syscallarg(void *) arg;
syscallarg(int) misc;
};