Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/osf1 regen
details: https://anonhg.NetBSD.org/src/rev/463968b3e3f5
branches: trunk
changeset: 472454:463968b3e3f5
user: cgd <cgd%NetBSD.org@localhost>
date: Thu Apr 29 23:39:55 1999 +0000
description:
regen
diffstat:
sys/compat/osf1/osf1_syscall.h | 9 ++++++---
sys/compat/osf1/osf1_syscallargs.h | 19 ++++++++++++++++---
sys/compat/osf1/osf1_syscalls.c | 6 +++---
sys/compat/osf1/osf1_sysent.c | 12 ++++++------
4 files changed, 31 insertions(+), 15 deletions(-)
diffs (157 lines):
diff -r 18a1c2a9748d -r 463968b3e3f5 sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h Thu Apr 29 23:37:23 1999 +0000
+++ b/sys/compat/osf1/osf1_syscall.h Thu Apr 29 23:39:55 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscall.h,v 1.27 1999/04/29 17:20:37 thorpej Exp $ */
+/* $NetBSD: osf1_syscall.h,v 1.28 1999/04/29 23:39:55 cgd Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.21 1999/04/29 17:19:47 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.22 1999/04/29 22:08:49 cgd Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -173,7 +173,7 @@
/* syscall: "setpgrp" ret: "int" args: "int" "int" */
#define OSF1_SYS_setpgrp 82
-/* syscall: "setitimer" ret: "int" args: "u_int" "struct itimerval *" "struct itimerval *" */
+/* syscall: "setitimer" ret: "int" args: "u_int" "struct osf1_itimerval *" "struct osf1_itimerval *" */
#define OSF1_SYS_setitimer 83
/* syscall: "gethostname" ret: "int" args: "char *" "u_int" */
@@ -340,6 +340,9 @@
/* syscall: "sigaltstack" ret: "int" args: "struct osf1_sigaltstack *" "struct osf1_sigaltstack *" */
#define OSF1_SYS_sigaltstack 235
+/* syscall: "sysinfo" ret: "int" args: "int" "char *" "long" */
+#define OSF1_SYS_sysinfo 241
+
/* syscall: "usleep_thread" ret: "int" args: "struct osf1_timeval *" "struct osf1_timeval *" */
#define OSF1_SYS_usleep_thread 251
diff -r 18a1c2a9748d -r 463968b3e3f5 sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h Thu Apr 29 23:37:23 1999 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h Thu Apr 29 23:39:55 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscallargs.h,v 1.27 1999/04/29 17:20:37 thorpej Exp $ */
+/* $NetBSD: osf1_syscallargs.h,v 1.28 1999/04/29 23:39:55 cgd Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.21 1999/04/29 17:19:47 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.22 1999/04/29 22:08:49 cgd Exp
*/
#ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -125,6 +125,12 @@
syscallarg(int) behav;
};
+struct osf1_sys_setitimer_args {
+ syscallarg(u_int) which;
+ syscallarg(struct osf1_itimerval *) itv;
+ syscallarg(struct osf1_itimerval *) oitv;
+};
+
struct osf1_sys_fstat_args {
syscallarg(int) fd;
syscallarg(void *) sb;
@@ -242,6 +248,12 @@
syscallarg(struct osf1_sigaltstack *) oss;
};
+struct osf1_sys_sysinfo_args {
+ syscallarg(int) cmd;
+ syscallarg(char *) buf;
+ syscallarg(long) len;
+};
+
struct osf1_sys_usleep_thread_args {
syscallarg(struct osf1_timeval *) sleep;
syscallarg(struct osf1_timeval *) slept;
@@ -314,7 +326,7 @@
int sys_getgroups __P((struct proc *, void *, register_t *));
int sys_setgroups __P((struct proc *, void *, register_t *));
int sys_setpgid __P((struct proc *, void *, register_t *));
-int sys_setitimer __P((struct proc *, void *, register_t *));
+int osf1_sys_setitimer __P((struct proc *, void *, register_t *));
int compat_43_sys_gethostname __P((struct proc *, void *, register_t *));
int compat_43_sys_sethostname __P((struct proc *, void *, register_t *));
int compat_43_sys_getdtablesize __P((struct proc *, void *, register_t *));
@@ -369,6 +381,7 @@
int sys___posix_lchown __P((struct proc *, void *, register_t *));
int sys_getsid __P((struct proc *, void *, register_t *));
int osf1_sys_sigaltstack __P((struct proc *, void *, register_t *));
+int osf1_sys_sysinfo __P((struct proc *, void *, register_t *));
int osf1_sys_usleep_thread __P((struct proc *, void *, register_t *));
int osf1_sys_setsysinfo __P((struct proc *, void *, register_t *));
#endif /* _OSF1_SYS__SYSCALLARGS_H_ */
diff -r 18a1c2a9748d -r 463968b3e3f5 sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c Thu Apr 29 23:37:23 1999 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c Thu Apr 29 23:39:55 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscalls.c,v 1.25 1999/04/29 17:20:37 thorpej Exp $ */
+/* $NetBSD: osf1_syscalls.c,v 1.26 1999/04/29 23:39:55 cgd Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.21 1999/04/29 17:19:47 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.22 1999/04/29 22:08:49 cgd Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -260,7 +260,7 @@
"#238 (unimplemented sigsendset)", /* 238 = unimplemented sigsendset */
"#239 (unimplemented set_speculative)", /* 239 = unimplemented set_speculative */
"#240 (unimplemented msfs_syscall)", /* 240 = unimplemented msfs_syscall */
- "#241 (unimplemented sysinfo)", /* 241 = unimplemented sysinfo */
+ "sysinfo", /* 241 = sysinfo */
"#242 (unimplemented uadmin)", /* 242 = unimplemented uadmin */
"#243 (unimplemented fuser)", /* 243 = unimplemented fuser */
"#244 (unimplemented proplist_syscall)", /* 244 = unimplemented proplist_syscall */
diff -r 18a1c2a9748d -r 463968b3e3f5 sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c Thu Apr 29 23:37:23 1999 +0000
+++ b/sys/compat/osf1/osf1_sysent.c Thu Apr 29 23:39:55 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_sysent.c,v 1.27 1999/04/29 17:20:37 thorpej Exp $ */
+/* $NetBSD: osf1_sysent.c,v 1.28 1999/04/29 23:39:55 cgd Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.21 1999/04/29 17:19:47 thorpej Exp
+ * created from NetBSD: syscalls.master,v 1.22 1999/04/29 22:08:49 cgd Exp
*/
#include "opt_compat_43.h"
@@ -185,8 +185,8 @@
sys_nosys }, /* 81 = unimplemented old getpgrp */
{ 2, s(struct sys_setpgid_args),
sys_setpgid }, /* 82 = setpgrp */
- { 3, s(struct sys_setitimer_args),
- sys_setitimer }, /* 83 = setitimer */
+ { 3, s(struct osf1_sys_setitimer_args),
+ osf1_sys_setitimer }, /* 83 = setitimer */
{ 0, 0,
sys_nosys }, /* 84 = unimplemented old wait */
{ 0, 0,
@@ -501,8 +501,8 @@
sys_nosys }, /* 239 = unimplemented set_speculative */
{ 0, 0,
sys_nosys }, /* 240 = unimplemented msfs_syscall */
- { 0, 0,
- sys_nosys }, /* 241 = unimplemented sysinfo */
+ { 3, s(struct osf1_sys_sysinfo_args),
+ osf1_sys_sysinfo }, /* 241 = sysinfo */
{ 0, 0,
sys_nosys }, /* 242 = unimplemented uadmin */
{ 0, 0,
Home |
Main Index |
Thread Index |
Old Index