This commit is contained in:
christos 2005-09-26 03:04:46 +00:00
parent 65a3ca6215
commit 2cbe95f3ac
4 changed files with 16 additions and 16 deletions

View File

@ -1,14 +1,14 @@
/* $NetBSD: init_sysent.c,v 1.166 2005/08/19 02:04:03 christos Exp $ */
/* $NetBSD: init_sysent.c,v 1.167 2005/09/26 03:04:46 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.147 2005/07/10 22:04:20 thorpej Exp
* created from NetBSD: syscalls.master,v 1.149 2005/09/26 03:02:19 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.166 2005/08/19 02:04:03 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.167 2005/09/26 03:04:46 christos Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"

View File

@ -1,14 +1,14 @@
/* $NetBSD: syscalls.c,v 1.161 2005/08/19 02:04:03 christos Exp $ */
/* $NetBSD: syscalls.c,v 1.162 2005/09/26 03:04:46 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.147 2005/07/10 22:04:20 thorpej Exp
* created from NetBSD: syscalls.master,v 1.149 2005/09/26 03:02:19 christos Exp
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.161 2005/08/19 02:04:03 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.162 2005/09/26 03:04:46 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscall.h,v 1.159 2005/08/19 02:04:04 christos Exp $ */
/* $NetBSD: syscall.h,v 1.160 2005/09/26 03:04:46 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.147 2005/07/10 22:04:20 thorpej Exp
* created from NetBSD: syscalls.master,v 1.149 2005/09/26 03:02:19 christos Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@ -986,7 +986,7 @@
/* syscall: "extattr_set_file" ret: "int" args: "const char *" "int" "const char *" "const void *" "size_t" */
#define SYS_extattr_set_file 361
/* syscall: "extattr_get_file" ret: "int" args: "const char *" "int" "const char *" "void *" "size_t" */
/* syscall: "extattr_get_file" ret: "ssize_t" args: "const char *" "int" "const char *" "void *" "size_t" */
#define SYS_extattr_get_file 362
/* syscall: "extattr_delete_file" ret: "int" args: "const char *" "int" "const char *" */
@ -995,7 +995,7 @@
/* syscall: "extattr_set_fd" ret: "int" args: "int" "int" "const char *" "const void *" "size_t" */
#define SYS_extattr_set_fd 364
/* syscall: "extattr_get_fd" ret: "int" args: "int" "int" "const char *" "void *" "size_t" */
/* syscall: "extattr_get_fd" ret: "ssize_t" args: "int" "int" "const char *" "void *" "size_t" */
#define SYS_extattr_get_fd 365
/* syscall: "extattr_delete_fd" ret: "int" args: "int" "int" "const char *" */
@ -1004,19 +1004,19 @@
/* syscall: "extattr_set_link" ret: "int" args: "const char *" "int" "const char *" "const void *" "size_t" */
#define SYS_extattr_set_link 367
/* syscall: "extattr_get_link" ret: "int" args: "const char *" "int" "const char *" "void *" "size_t" */
/* syscall: "extattr_get_link" ret: "ssize_t" args: "const char *" "int" "const char *" "void *" "size_t" */
#define SYS_extattr_get_link 368
/* syscall: "extattr_delete_link" ret: "int" args: "const char *" "int" "const char *" */
#define SYS_extattr_delete_link 369
/* syscall: "extattr_list_fd" ret: "int" args: "int" "int" "void *" "size_t" */
/* syscall: "extattr_list_fd" ret: "ssize_t" args: "int" "int" "void *" "size_t" */
#define SYS_extattr_list_fd 370
/* syscall: "extattr_list_file" ret: "int" args: "const char *" "int" "void *" "size_t" */
/* syscall: "extattr_list_file" ret: "ssize_t" args: "const char *" "int" "void *" "size_t" */
#define SYS_extattr_list_file 371
/* syscall: "extattr_list_link" ret: "int" args: "const char *" "int" "void *" "size_t" */
/* syscall: "extattr_list_link" ret: "ssize_t" args: "const char *" "int" "void *" "size_t" */
#define SYS_extattr_list_link 372
/* syscall: "pselect" ret: "int" args: "int" "fd_set *" "fd_set *" "fd_set *" "const struct timespec *" "const sigset_t *" */

View File

@ -1,10 +1,10 @@
/* $NetBSD: syscallargs.h,v 1.141 2005/08/19 02:04:04 christos Exp $ */
/* $NetBSD: syscallargs.h,v 1.142 2005/09/26 03:04:46 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.147 2005/07/10 22:04:20 thorpej Exp
* created from NetBSD: syscalls.master,v 1.149 2005/09/26 03:02:19 christos Exp
*/
#ifndef _SYS__SYSCALLARGS_H_