Regen.
This commit is contained in:
parent
606e323b3e
commit
d71c91cb2c
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: init_sysent.c,v 1.183 2007/01/16 01:32:52 ad Exp $ */
|
||||
/* $NetBSD: init_sysent.c,v 1.184 2007/01/16 05:29:54 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call switch table.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.161 2007/01/16 01:30:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.183 2007/01/16 01:32:52 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.184 2007/01/16 05:29:54 ad Exp $");
|
||||
|
||||
#include "opt_ktrace.h"
|
||||
#include "opt_nfsserver.h"
|
||||
|
@ -963,13 +963,8 @@ struct sysent sysent[] = {
|
|||
sys_nosys }, /* 348 = unimplemented sys_sched_setscheduler */
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 349 = unimplemented sys_sched_getscheduler */
|
||||
#if !defined(KERNEL)
|
||||
{ 0, 0, 0,
|
||||
sys_sched_yield }, /* 350 = sched_yield */
|
||||
#else
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 350 = excluded sys_sched_yield */
|
||||
#endif
|
||||
{ 0, 0, 0,
|
||||
sys_nosys }, /* 351 = unimplemented sys_sched_get_priority_max */
|
||||
{ 0, 0, 0,
|
||||
|
|
|
@ -1,14 +1,14 @@
|
|||
/* $NetBSD: syscalls.c,v 1.179 2007/01/16 01:32:52 ad Exp $ */
|
||||
/* $NetBSD: syscalls.c,v 1.180 2007/01/16 05:29:54 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call names.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.161 2007/01/16 01:30:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.179 2007/01/16 01:32:52 ad Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.180 2007/01/16 05:29:54 ad Exp $");
|
||||
|
||||
#if defined(_KERNEL_OPT)
|
||||
#include "opt_ktrace.h"
|
||||
|
@ -493,11 +493,7 @@ const char *const syscallnames[] = {
|
|||
"#347 (unimplemented sys_sched_getparam)", /* 347 = unimplemented sys_sched_getparam */
|
||||
"#348 (unimplemented sys_sched_setscheduler)", /* 348 = unimplemented sys_sched_setscheduler */
|
||||
"#349 (unimplemented sys_sched_getscheduler)", /* 349 = unimplemented sys_sched_getscheduler */
|
||||
#if !defined(KERNEL)
|
||||
"sched_yield", /* 350 = sched_yield */
|
||||
#else
|
||||
"#350 (excluded sys_sched_yield)", /* 350 = excluded sys_sched_yield */
|
||||
#endif
|
||||
"#351 (unimplemented sys_sched_get_priority_max)", /* 351 = unimplemented sys_sched_get_priority_max */
|
||||
"#352 (unimplemented sys_sched_get_priority_min)", /* 352 = unimplemented sys_sched_get_priority_min */
|
||||
"#353 (unimplemented sys_sched_rr_get_interval)", /* 353 = unimplemented sys_sched_rr_get_interval */
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscall.h,v 1.176 2007/01/16 01:32:52 ad Exp $ */
|
||||
/* $NetBSD: syscall.h,v 1.177 2007/01/16 05:29:54 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call numbers.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.161 2007/01/16 01:30:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALL_H_
|
||||
|
@ -988,13 +988,9 @@
|
|||
/* syscall: "kevent" ret: "int" args: "int" "const struct kevent *" "size_t" "struct kevent *" "size_t" "const struct timespec *" */
|
||||
#define SYS_kevent 345
|
||||
|
||||
#if !defined(KERNEL)
|
||||
/* syscall: "sched_yield" ret: "int" args: */
|
||||
#define SYS_sched_yield 350
|
||||
|
||||
#else
|
||||
/* 350 is excluded sys_sched_yield */
|
||||
#endif
|
||||
/* syscall: "fsync_range" ret: "int" args: "int" "int" "off_t" "off_t" */
|
||||
#define SYS_fsync_range 354
|
||||
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
/* $NetBSD: syscallargs.h,v 1.158 2007/01/16 01:32:52 ad Exp $ */
|
||||
/* $NetBSD: syscallargs.h,v 1.159 2007/01/16 05:29:54 ad Exp $ */
|
||||
|
||||
/*
|
||||
* System call argument lists.
|
||||
*
|
||||
* DO NOT EDIT-- this file is automatically generated.
|
||||
* created from NetBSD: syscalls.master,v 1.161 2007/01/16 01:30:45 ad Exp
|
||||
* created from NetBSD: syscalls.master,v 1.162 2007/01/16 05:28:45 ad Exp
|
||||
*/
|
||||
|
||||
#ifndef _SYS_SYSCALLARGS_H_
|
||||
|
@ -1469,9 +1469,6 @@ struct sys_kevent_args {
|
|||
syscallarg(size_t) nevents;
|
||||
syscallarg(const struct timespec *) timeout;
|
||||
};
|
||||
#if !defined(KERNEL)
|
||||
#else
|
||||
#endif
|
||||
|
||||
struct sys_fsync_range_args {
|
||||
syscallarg(int) fd;
|
||||
|
@ -2400,11 +2397,8 @@ int sys_kqueue(struct lwp *, void *, register_t *);
|
|||
|
||||
int sys_kevent(struct lwp *, void *, register_t *);
|
||||
|
||||
#if !defined(KERNEL)
|
||||
int sys_sched_yield(struct lwp *, void *, register_t *);
|
||||
|
||||
#else
|
||||
#endif
|
||||
int sys_fsync_range(struct lwp *, void *, register_t *);
|
||||
|
||||
int sys_uuidgen(struct lwp *, void *, register_t *);
|
||||
|
|
Loading…
Reference in New Issue