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/3d0d28d75bdb
branches: trunk
changeset: 472635:3d0d28d75bdb
user: cgd <cgd%NetBSD.org@localhost>
date: Tue May 04 02:12:33 1999 +0000
description:
regen
diffstat:
sys/compat/osf1/osf1_syscall.h | 10 ++++++++--
sys/compat/osf1/osf1_syscallargs.h | 16 ++++++++++++++--
sys/compat/osf1/osf1_syscalls.c | 8 ++++----
sys/compat/osf1/osf1_sysent.c | 12 ++++++------
4 files changed, 32 insertions(+), 14 deletions(-)
diffs (129 lines):
diff -r ed21f05fc37b -r 3d0d28d75bdb sys/compat/osf1/osf1_syscall.h
--- a/sys/compat/osf1/osf1_syscall.h Tue May 04 02:12:15 1999 +0000
+++ b/sys/compat/osf1/osf1_syscall.h Tue May 04 02:12:33 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscall.h,v 1.29 1999/04/30 04:36:04 cgd Exp $ */
+/* $NetBSD: osf1_syscall.h,v 1.30 1999/05/04 02:12:33 cgd Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.23 1999/04/30 04:33:51 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.24 1999/05/04 02:12:15 cgd Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -349,6 +349,12 @@
/* syscall: "sysinfo" ret: "int" args: "int" "char *" "long" */
#define OSF1_SYS_sysinfo 241
+/* syscall: "pathconf" ret: "long" args: "const char *" "int" */
+#define OSF1_SYS_pathconf 247
+
+/* syscall: "fpathconf" ret: "long" args: "int" "int" */
+#define OSF1_SYS_fpathconf 248
+
/* syscall: "usleep_thread" ret: "int" args: "struct osf1_timeval *" "struct osf1_timeval *" */
#define OSF1_SYS_usleep_thread 251
diff -r ed21f05fc37b -r 3d0d28d75bdb sys/compat/osf1/osf1_syscallargs.h
--- a/sys/compat/osf1/osf1_syscallargs.h Tue May 04 02:12:15 1999 +0000
+++ b/sys/compat/osf1/osf1_syscallargs.h Tue May 04 02:12:33 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscallargs.h,v 1.29 1999/04/30 04:36:04 cgd Exp $ */
+/* $NetBSD: osf1_syscallargs.h,v 1.30 1999/05/04 02:12:33 cgd Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.23 1999/04/30 04:33:51 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.24 1999/05/04 02:12:15 cgd Exp
*/
#ifndef _OSF1_SYS__SYSCALLARGS_H_
@@ -261,6 +261,16 @@
syscallarg(long) len;
};
+struct osf1_sys_pathconf_args {
+ syscallarg(const char *) path;
+ syscallarg(int) name;
+};
+
+struct osf1_sys_fpathconf_args {
+ syscallarg(int) fd;
+ syscallarg(int) name;
+};
+
struct osf1_sys_usleep_thread_args {
syscallarg(struct osf1_timeval *) sleep;
syscallarg(struct osf1_timeval *) slept;
@@ -391,6 +401,8 @@
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_pathconf __P((struct proc *, void *, register_t *));
+int osf1_sys_fpathconf __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 ed21f05fc37b -r 3d0d28d75bdb sys/compat/osf1/osf1_syscalls.c
--- a/sys/compat/osf1/osf1_syscalls.c Tue May 04 02:12:15 1999 +0000
+++ b/sys/compat/osf1/osf1_syscalls.c Tue May 04 02:12:33 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_syscalls.c,v 1.27 1999/04/30 04:36:04 cgd Exp $ */
+/* $NetBSD: osf1_syscalls.c,v 1.28 1999/05/04 02:12:33 cgd Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.23 1999/04/30 04:33:51 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.24 1999/05/04 02:12:15 cgd Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@@ -266,8 +266,8 @@
"#244 (unimplemented proplist_syscall)", /* 244 = unimplemented proplist_syscall */
"#245 (unimplemented ntp_adjtime)", /* 245 = unimplemented ntp_adjtime */
"#246 (unimplemented ntp_gettime)", /* 246 = unimplemented ntp_gettime */
- "#247 (unimplemented pathconf)", /* 247 = unimplemented pathconf */
- "#248 (unimplemented fpathconf)", /* 248 = unimplemented fpathconf */
+ "pathconf", /* 247 = pathconf */
+ "fpathconf", /* 248 = fpathconf */
"#249 (unimplemented)", /* 249 = unimplemented */
"#250 (unimplemented uswitch)", /* 250 = unimplemented uswitch */
"usleep_thread", /* 251 = usleep_thread */
diff -r ed21f05fc37b -r 3d0d28d75bdb sys/compat/osf1/osf1_sysent.c
--- a/sys/compat/osf1/osf1_sysent.c Tue May 04 02:12:15 1999 +0000
+++ b/sys/compat/osf1/osf1_sysent.c Tue May 04 02:12:33 1999 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: osf1_sysent.c,v 1.29 1999/04/30 04:36:04 cgd Exp $ */
+/* $NetBSD: osf1_sysent.c,v 1.30 1999/05/04 02:12:33 cgd Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.23 1999/04/30 04:33:51 cgd Exp
+ * created from NetBSD: syscalls.master,v 1.24 1999/05/04 02:12:15 cgd Exp
*/
#include "opt_compat_43.h"
@@ -513,10 +513,10 @@
sys_nosys }, /* 245 = unimplemented ntp_adjtime */
{ 0, 0,
sys_nosys }, /* 246 = unimplemented ntp_gettime */
- { 0, 0,
- sys_nosys }, /* 247 = unimplemented pathconf */
- { 0, 0,
- sys_nosys }, /* 248 = unimplemented fpathconf */
+ { 2, s(struct osf1_sys_pathconf_args),
+ osf1_sys_pathconf }, /* 247 = pathconf */
+ { 2, s(struct osf1_sys_fpathconf_args),
+ osf1_sys_fpathconf }, /* 248 = fpathconf */
{ 0, 0,
sys_nosys }, /* 249 = unimplemented */
{ 0, 0,
Home |
Main Index |
Thread Index |
Old Index