Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys Regen
details: https://anonhg.NetBSD.org/src/rev/64d3da36534f
branches: trunk
changeset: 552707:64d3da36534f
user: christos <christos%NetBSD.org@localhost>
date: Tue Sep 30 20:36:40 2003 +0000
description:
Regen
diffstat:
sys/kern/init_sysent.c | 8 +-
sys/kern/syscalls.c | 8 +-
sys/sys/syscall.h | 6 +-
sys/sys/syscallargs.h | 299 ++++++++++++++++++++++++++++++++++++++++++++++--
4 files changed, 297 insertions(+), 24 deletions(-)
diffs (truncated from 748 to 300 lines):
diff -r 948aef773f3f -r 64d3da36534f sys/kern/init_sysent.c
--- a/sys/kern/init_sysent.c Tue Sep 30 20:36:10 2003 +0000
+++ b/sys/kern/init_sysent.c Tue Sep 30 20:36:40 2003 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.149 2003/09/26 23:11:16 matt Exp $ */
+/* $NetBSD: init_sysent.c,v 1.150 2003/09/30 20:36:40 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.132 2003/09/26 23:08:24 matt Exp
+ * created from NetBSD: syscalls.master,v 1.133 2003/09/30 20:36:10 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.149 2003/09/26 23:11:16 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.150 2003/09/30 20:36:40 christos Exp $");
#include "opt_ktrace.h"
#include "opt_nfsserver.h"
@@ -689,7 +689,7 @@
sys_nosys }, /* 245 = unimplemented sys_sigqueue */
{ 0, 0, 0,
sys_nosys }, /* 246 = unimplemented */
-#if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
+#if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
{ 2, s(struct sys__ksem_init_args), 0,
sys__ksem_init }, /* 247 = _ksem_init */
{ 5, s(struct sys__ksem_open_args), 0,
diff -r 948aef773f3f -r 64d3da36534f sys/kern/syscalls.c
--- a/sys/kern/syscalls.c Tue Sep 30 20:36:10 2003 +0000
+++ b/sys/kern/syscalls.c Tue Sep 30 20:36:40 2003 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.144 2003/09/26 23:11:16 matt Exp $ */
+/* $NetBSD: syscalls.c,v 1.145 2003/09/30 20:36:40 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.132 2003/09/26 23:08:24 matt Exp
+ * created from NetBSD: syscalls.master,v 1.133 2003/09/30 20:36:10 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.144 2003/09/26 23:11:16 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.145 2003/09/30 20:36:40 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ktrace.h"
@@ -353,7 +353,7 @@
"__sigtimedwait", /* 244 = __sigtimedwait */
"#245 (unimplemented sys_sigqueue)", /* 245 = unimplemented sys_sigqueue */
"#246 (unimplemented)", /* 246 = unimplemented */
-#if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
+#if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
"_ksem_init", /* 247 = _ksem_init */
"_ksem_open", /* 248 = _ksem_open */
"_ksem_unlink", /* 249 = _ksem_unlink */
diff -r 948aef773f3f -r 64d3da36534f sys/sys/syscall.h
--- a/sys/sys/syscall.h Tue Sep 30 20:36:10 2003 +0000
+++ b/sys/sys/syscall.h Tue Sep 30 20:36:40 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.142 2003/09/26 23:11:16 matt Exp $ */
+/* $NetBSD: syscall.h,v 1.143 2003/09/30 20:36:40 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.132 2003/09/26 23:08:24 matt Exp
+ * created from NetBSD: syscalls.master,v 1.133 2003/09/30 20:36:10 christos Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -726,7 +726,7 @@
/* syscall: "__sigtimedwait" ret: "int" args: "const sigset_t *" "siginfo_t *" "struct timespec *" */
#define SYS___sigtimedwait 244
-#if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
+#if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
/* syscall: "_ksem_init" ret: "int" args: "unsigned int" "semid_t *" */
#define SYS__ksem_init 247
diff -r 948aef773f3f -r 64d3da36534f sys/sys/syscallargs.h
--- a/sys/sys/syscallargs.h Tue Sep 30 20:36:10 2003 +0000
+++ b/sys/sys/syscallargs.h Tue Sep 30 20:36:40 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.124 2003/09/26 23:11:16 matt Exp $ */
+/* $NetBSD: syscallargs.h,v 1.125 2003/09/30 20:36:40 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.132 2003/09/26 23:08:24 matt Exp
+ * created from NetBSD: syscalls.master,v 1.133 2003/09/30 20:36:10 christos Exp
*/
#ifndef _SYS__SYSCALLARGS_H_
@@ -1100,7 +1100,7 @@
syscallarg(siginfo_t *) info;
syscallarg(struct timespec *) timeout;
};
-#if defined(P1003_1B_SEMAPHORE) || !defined(_KERNEL)
+#if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
struct sys__ksem_init_args {
syscallarg(unsigned int) value;
@@ -1458,354 +1458,627 @@
*/
int sys_exit(struct lwp *, void *, register_t *);
+
int sys_fork(struct lwp *, void *, register_t *);
+
int sys_read(struct lwp *, void *, register_t *);
+
int sys_write(struct lwp *, void *, register_t *);
+
int sys_open(struct lwp *, void *, register_t *);
+
int sys_close(struct lwp *, void *, register_t *);
+
int sys_wait4(struct lwp *, void *, register_t *);
+
int compat_43_sys_creat(struct lwp *, void *, register_t *);
+
int sys_link(struct lwp *, void *, register_t *);
+
int sys_unlink(struct lwp *, void *, register_t *);
+
int sys_chdir(struct lwp *, void *, register_t *);
+
int sys_fchdir(struct lwp *, void *, register_t *);
+
int sys_mknod(struct lwp *, void *, register_t *);
+
int sys_chmod(struct lwp *, void *, register_t *);
+
int sys_chown(struct lwp *, void *, register_t *);
+
int sys_obreak(struct lwp *, void *, register_t *);
+
int sys_getfsstat(struct lwp *, void *, register_t *);
+
int compat_43_sys_lseek(struct lwp *, void *, register_t *);
+
#ifdef COMPAT_43
int sys_getpid_with_ppid(struct lwp *, void *, register_t *);
+
#else
int sys_getpid(struct lwp *, void *, register_t *);
+
#endif
int sys_mount(struct lwp *, void *, register_t *);
+
int sys_unmount(struct lwp *, void *, register_t *);
+
int sys_setuid(struct lwp *, void *, register_t *);
+
#ifdef COMPAT_43
int sys_getuid_with_euid(struct lwp *, void *, register_t *);
+
#else
int sys_getuid(struct lwp *, void *, register_t *);
+
#endif
int sys_geteuid(struct lwp *, void *, register_t *);
+
int sys_ptrace(struct lwp *, void *, register_t *);
+
int sys_recvmsg(struct lwp *, void *, register_t *);
+
int sys_sendmsg(struct lwp *, void *, register_t *);
+
int sys_recvfrom(struct lwp *, void *, register_t *);
+
int sys_accept(struct lwp *, void *, register_t *);
+
int sys_getpeername(struct lwp *, void *, register_t *);
+
int sys_getsockname(struct lwp *, void *, register_t *);
+
int sys_access(struct lwp *, void *, register_t *);
+
int sys_chflags(struct lwp *, void *, register_t *);
+
int sys_fchflags(struct lwp *, void *, register_t *);
+
int sys_sync(struct lwp *, void *, register_t *);
+
int sys_kill(struct lwp *, void *, register_t *);
+
int compat_43_sys_stat(struct lwp *, void *, register_t *);
+
int sys_getppid(struct lwp *, void *, register_t *);
+
int compat_43_sys_lstat(struct lwp *, void *, register_t *);
+
int sys_dup(struct lwp *, void *, register_t *);
+
int sys_pipe(struct lwp *, void *, register_t *);
+
int sys_getegid(struct lwp *, void *, register_t *);
+
int sys_profil(struct lwp *, void *, register_t *);
+
#if defined(KTRACE) || !defined(_KERNEL)
int sys_ktrace(struct lwp *, void *, register_t *);
+
#else
#endif
int compat_13_sys_sigaction(struct lwp *, void *, register_t *);
+
#ifdef COMPAT_43
int sys_getgid_with_egid(struct lwp *, void *, register_t *);
+
#else
int sys_getgid(struct lwp *, void *, register_t *);
+
#endif
int compat_13_sys_sigprocmask(struct lwp *, void *, register_t *);
+
int sys___getlogin(struct lwp *, void *, register_t *);
+
int sys___setlogin(struct lwp *, void *, register_t *);
+
int sys_acct(struct lwp *, void *, register_t *);
+
int compat_13_sys_sigpending(struct lwp *, void *, register_t *);
+
int compat_13_sys_sigaltstack(struct lwp *, void *, register_t *);
+
int sys_ioctl(struct lwp *, void *, register_t *);
+
int compat_12_sys_reboot(struct lwp *, void *, register_t *);
+
int sys_revoke(struct lwp *, void *, register_t *);
+
int sys_symlink(struct lwp *, void *, register_t *);
+
int sys_readlink(struct lwp *, void *, register_t *);
+
int sys_execve(struct lwp *, void *, register_t *);
+
int sys_umask(struct lwp *, void *, register_t *);
+
int sys_chroot(struct lwp *, void *, register_t *);
+
int compat_43_sys_fstat(struct lwp *, void *, register_t *);
+
int compat_43_sys_getkerninfo(struct lwp *, void *, register_t *);
+
int compat_43_sys_getpagesize(struct lwp *, void *, register_t *);
+
int compat_12_sys_msync(struct lwp *, void *, register_t *);
+
int sys_vfork(struct lwp *, void *, register_t *);
+
int sys_sbrk(struct lwp *, void *, register_t *);
+
int sys_sstk(struct lwp *, void *, register_t *);
+
int compat_43_sys_mmap(struct lwp *, void *, register_t *);
+
int sys_ovadvise(struct lwp *, void *, register_t *);
+
int sys_munmap(struct lwp *, void *, register_t *);
+
int sys_mprotect(struct lwp *, void *, register_t *);
+
int sys_madvise(struct lwp *, void *, register_t *);
+
int sys_mincore(struct lwp *, void *, register_t *);
+
int sys_getgroups(struct lwp *, void *, register_t *);
+
int sys_setgroups(struct lwp *, void *, register_t *);
+
int sys_getpgrp(struct lwp *, void *, register_t *);
+
int sys_setpgid(struct lwp *, void *, register_t *);
+
int sys_setitimer(struct lwp *, void *, register_t *);
+
int compat_43_sys_wait(struct lwp *, void *, register_t *);
+
int compat_12_sys_swapon(struct lwp *, void *, register_t *);
+
int sys_getitimer(struct lwp *, void *, register_t *);
+
int compat_43_sys_gethostname(struct lwp *, void *, register_t *);
+
int compat_43_sys_sethostname(struct lwp *, void *, register_t *);
+
int compat_43_sys_getdtablesize(struct lwp *, void *, register_t *);
+
int sys_dup2(struct lwp *, void *, register_t *);
Home |
Main Index |
Thread Index |
Old Index