Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/svr4_32 regen after schedctl addition.
details: https://anonhg.NetBSD.org/src/rev/d7f2f6c26f9e
branches: trunk
changeset: 556060:d7f2f6c26f9e
user: dmcmahill <dmcmahill%NetBSD.org@localhost>
date: Sun Dec 07 01:50:10 2003 +0000
description:
regen after schedctl addition.
diffstat:
sys/compat/svr4_32/svr4_32_syscall.h | 19 ++-
sys/compat/svr4_32/svr4_32_syscallargs.h | 180 ++++++++++++++++++++++++++++++-
sys/compat/svr4_32/svr4_32_syscalls.c | 9 +-
sys/compat/svr4_32/svr4_32_sysent.c | 11 +-
4 files changed, 205 insertions(+), 14 deletions(-)
diffs (truncated from 554 to 300 lines):
diff -r 30c394a6525a -r d7f2f6c26f9e sys/compat/svr4_32/svr4_32_syscall.h
--- a/sys/compat/svr4_32/svr4_32_syscall.h Sun Dec 07 01:36:58 2003 +0000
+++ b/sys/compat/svr4_32/svr4_32_syscall.h Sun Dec 07 01:50:10 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: svr4_32_syscall.h,v 1.9 2003/01/19 16:49:12 thorpej Exp $ */
+/* $NetBSD: svr4_32_syscall.h,v 1.10 2003/12/07 01:50:10 dmcmahill Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.6 2003/01/19 16:47:17 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.7 2003/12/07 01:36:58 dmcmahill Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -121,18 +121,27 @@
/* syscall: "signal" ret: "int" args: "int" "svr4_sig_t" */
#define SVR4_32_SYS_signal 48
+#ifdef SYSVMSG
/* syscall: "msgsys" ret: "int" args: "int" "int" "int" "int" "int" */
#define SVR4_32_SYS_msgsys 49
+#else
+#endif
/* syscall: "sysarch" ret: "int" args: "int" "netbsd32_voidp" */
#define SVR4_32_SYS_sysarch 50
+#ifdef SYSVSHM
/* syscall: "shmsys" ret: "int" args: "int" "int" "int" "int" */
#define SVR4_32_SYS_shmsys 52
+#else
+#endif
+#ifdef SYSVSEM
/* syscall: "semsys" ret: "int" args: "int" "int" "int" "int" "int" */
#define SVR4_32_SYS_semsys 53
+#else
+#endif
/* syscall: "ioctl" ret: "int" args: "int" "netbsd32_u_long" "netbsd32_caddr_t" */
#define SVR4_32_SYS_ioctl 54
@@ -386,6 +395,9 @@
/* syscall: "netbsd32_setregid" ret: "int" args: "int" "int" */
#define SVR4_32_SYS_netbsd32_setregid 203
+/* syscall: "schedctl" ret: "int" args: "unsigned int" "int" "void **" */
+#define SVR4_32_SYS_schedctl 206
+
/* syscall: "resolvepath" ret: "int" args: "const netbsd32_charp" "netbsd32_charp" "netbsd32_size_t" */
#define SVR4_32_SYS_resolvepath 209
@@ -482,9 +494,12 @@
/* syscall: "netbsd32_ntp_gettime" ret: "int" args: "netbsd32_ntptimevalp_t" */
#define SVR4_32_SYS_netbsd32_ntp_gettime 248
+#if defined(NTP) || !defined(_KERNEL)
/* syscall: "netbsd32_ntp_adjtime" ret: "int" args: "netbsd32_timexp_t" */
#define SVR4_32_SYS_netbsd32_ntp_adjtime 249
+#else
/* 249 is excluded ntp_adjtime */
+#endif
#define SVR4_32_SYS_MAXSYSCALL 256
#define SVR4_32_SYS_NSYSENT 256
diff -r 30c394a6525a -r d7f2f6c26f9e sys/compat/svr4_32/svr4_32_syscallargs.h
--- a/sys/compat/svr4_32/svr4_32_syscallargs.h Sun Dec 07 01:36:58 2003 +0000
+++ b/sys/compat/svr4_32/svr4_32_syscallargs.h Sun Dec 07 01:50:10 2003 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: svr4_32_syscallargs.h,v 1.9 2003/01/19 16:49:13 thorpej Exp $ */
+/* $NetBSD: svr4_32_syscallargs.h,v 1.10 2003/12/07 01:50:10 dmcmahill Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.6 2003/01/19 16:47:17 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.7 2003/12/07 01:36:58 dmcmahill Exp
*/
#ifndef _SVR4_32_SYS__SYSCALLARGS_H_
@@ -108,6 +108,7 @@
syscallarg(int) signum;
syscallarg(svr4_sig_t) handler;
};
+#ifdef SYSVMSG
struct svr4_32_sys_msgsys_args {
syscallarg(int) what;
@@ -116,11 +117,14 @@
syscallarg(int) a4;
syscallarg(int) a5;
};
+#else
+#endif
struct svr4_32_sys_sysarch_args {
syscallarg(int) op;
syscallarg(netbsd32_voidp) a1;
};
+#ifdef SYSVSHM
struct svr4_32_sys_shmsys_args {
syscallarg(int) what;
@@ -128,6 +132,9 @@
syscallarg(int) a3;
syscallarg(int) a4;
};
+#else
+#endif
+#ifdef SYSVSEM
struct svr4_32_sys_semsys_args {
syscallarg(int) what;
@@ -136,6 +143,8 @@
syscallarg(int) a4;
syscallarg(int) a5;
};
+#else
+#endif
struct svr4_32_sys_ioctl_args {
syscallarg(int) fd;
@@ -405,6 +414,12 @@
syscallarg(svr4_32_aclent_tp) buf;
};
+struct svr4_32_sys_schedctl_args {
+ syscallarg(unsigned int) x;
+ syscallarg(int) y;
+ syscallarg(void **) z;
+};
+
struct svr4_32_sys_resolvepath_args {
syscallarg(const netbsd32_charp) path;
syscallarg(netbsd32_charp) buf;
@@ -491,177 +506,336 @@
syscallarg(int) type;
syscallarg(int) protocol;
};
+#if defined(NTP) || !defined(_KERNEL)
+#else
+#endif
/*
* System call prototypes.
*/
int sys_nosys(struct lwp *, void *, register_t *);
+
int netbsd32_exit(struct lwp *, void *, register_t *);
+
int sys_fork(struct lwp *, void *, register_t *);
+
int netbsd32_read(struct lwp *, void *, register_t *);
+
int netbsd32_write(struct lwp *, void *, register_t *);
+
int svr4_32_sys_open(struct lwp *, void *, register_t *);
+
int netbsd32_close(struct lwp *, void *, register_t *);
+
int svr4_32_sys_wait(struct lwp *, void *, register_t *);
+
int svr4_32_sys_creat(struct lwp *, void *, register_t *);
+
int netbsd32_link(struct lwp *, void *, register_t *);
+
int netbsd32_unlink(struct lwp *, void *, register_t *);
+
int svr4_32_sys_execv(struct lwp *, void *, register_t *);
+
int netbsd32_chdir(struct lwp *, void *, register_t *);
+
int svr4_32_sys_time(struct lwp *, void *, register_t *);
+
int svr4_32_sys_mknod(struct lwp *, void *, register_t *);
+
int netbsd32_chmod(struct lwp *, void *, register_t *);
+
int netbsd32___posix_chown(struct lwp *, void *, register_t *);
+
int svr4_32_sys_break(struct lwp *, void *, register_t *);
+
int svr4_32_sys_stat(struct lwp *, void *, register_t *);
+
int compat_43_netbsd32_olseek(struct lwp *, void *, register_t *);
+
int sys_getpid(struct lwp *, void *, register_t *);
+
int netbsd32_setuid(struct lwp *, void *, register_t *);
+
int sys_getuid_with_euid(struct lwp *, void *, register_t *);
+
int svr4_32_sys_alarm(struct lwp *, void *, register_t *);
+
int svr4_32_sys_fstat(struct lwp *, void *, register_t *);
+
int svr4_32_sys_pause(struct lwp *, void *, register_t *);
+
int svr4_32_sys_utime(struct lwp *, void *, register_t *);
+
int svr4_32_sys_access(struct lwp *, void *, register_t *);
+
int svr4_32_sys_nice(struct lwp *, void *, register_t *);
+
int sys_sync(struct lwp *, void *, register_t *);
+
int svr4_32_sys_kill(struct lwp *, void *, register_t *);
+
int svr4_32_sys_pgrpsys(struct lwp *, void *, register_t *);
+
int netbsd32_dup(struct lwp *, void *, register_t *);
+
int sys_pipe(struct lwp *, void *, register_t *);
+
int svr4_32_sys_times(struct lwp *, void *, register_t *);
+
int netbsd32_setgid(struct lwp *, void *, register_t *);
+
int sys_getgid_with_egid(struct lwp *, void *, register_t *);
+
int svr4_32_sys_signal(struct lwp *, void *, register_t *);
+
#ifdef SYSVMSG
int svr4_32_sys_msgsys(struct lwp *, void *, register_t *);
+
#else
#endif
int svr4_32_sys_sysarch(struct lwp *, void *, register_t *);
+
#ifdef SYSVSHM
int svr4_32_sys_shmsys(struct lwp *, void *, register_t *);
+
#else
#endif
#ifdef SYSVSEM
int svr4_32_sys_semsys(struct lwp *, void *, register_t *);
+
#else
#endif
int svr4_32_sys_ioctl(struct lwp *, void *, register_t *);
+
int svr4_32_sys_utssys(struct lwp *, void *, register_t *);
+
int netbsd32_fsync(struct lwp *, void *, register_t *);
+
int netbsd32_execve(struct lwp *, void *, register_t *);
+
int netbsd32_umask(struct lwp *, void *, register_t *);
+
int netbsd32_chroot(struct lwp *, void *, register_t *);
+
int svr4_32_sys_fcntl(struct lwp *, void *, register_t *);
+
int svr4_32_sys_ulimit(struct lwp *, void *, register_t *);
+
int netbsd32_rmdir(struct lwp *, void *, register_t *);
+
int netbsd32_mkdir(struct lwp *, void *, register_t *);
+
int svr4_32_sys_getdents(struct lwp *, void *, register_t *);
+
int svr4_32_sys_getmsg(struct lwp *, void *, register_t *);
+
int svr4_32_sys_putmsg(struct lwp *, void *, register_t *);
+
int netbsd32_poll(struct lwp *, void *, register_t *);
+
int svr4_32_sys_lstat(struct lwp *, void *, register_t *);
+
int netbsd32_symlink(struct lwp *, void *, register_t *);
+
int netbsd32_readlink(struct lwp *, void *, register_t *);
+
int netbsd32_getgroups(struct lwp *, void *, register_t *);
+
int netbsd32_setgroups(struct lwp *, void *, register_t *);
+
int netbsd32_fchmod(struct lwp *, void *, register_t *);
+
int netbsd32___posix_fchown(struct lwp *, void *, register_t *);
+
int svr4_32_sys_sigprocmask(struct lwp *, void *, register_t *);
+
int svr4_32_sys_sigsuspend(struct lwp *, void *, register_t *);
+
int svr4_32_sys_sigaltstack(struct lwp *, void *, register_t *);
+
int svr4_32_sys_sigaction(struct lwp *, void *, register_t *);
+
int svr4_32_sys_sigpending(struct lwp *, void *, register_t *);
+
int svr4_32_sys_context(struct lwp *, void *, register_t *);
+
int svr4_32_sys_statvfs(struct lwp *, void *, register_t *);
+
int svr4_32_sys_fstatvfs(struct lwp *, void *, register_t *);
Home |
Main Index |
Thread Index |
Old Index