diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index f8c829787d6a..82c2255e55f4 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -1,10 +1,10 @@ -/* $NetBSD: init_sysent.c,v 1.109 1999/07/12 22:04:00 kleink Exp $ */ +/* $NetBSD: init_sysent.c,v 1.110 1999/07/12 23:01:47 thorpej Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp + * created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp */ #include "opt_ktrace.h" @@ -758,9 +758,5 @@ struct sysent sysent[] = { sys_fhstat }, /* 299 = fhstat */ { 2, s(struct sys_fhstatfs_args), sys_fhstatfs }, /* 300 = fhstatfs */ - { 1, s(struct sys_getcontext_args), - sys_getcontext }, /* 301 = getcontext */ - { 1, s(struct sys_setcontext_args), - sys_setcontext }, /* 302 = setcontext */ }; diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index c6e1685552b3..845deb2f8857 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $NetBSD: syscalls.c,v 1.103 1999/07/12 22:04:00 kleink Exp $ */ +/* $NetBSD: syscalls.c,v 1.104 1999/07/12 23:01:47 thorpej Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp + * created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp */ #if defined(_KERNEL) && !defined(_LKM) @@ -389,6 +389,4 @@ char *syscallnames[] = { "fhopen", /* 298 = fhopen */ "fhstat", /* 299 = fhstat */ "fhstatfs", /* 300 = fhstatfs */ - "getcontext", /* 301 = getcontext */ - "setcontext", /* 302 = setcontext */ }; diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 73147ef87078..96eb4ae5cfb0 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $NetBSD: syscall.h,v 1.102 1999/07/12 22:04:01 kleink Exp $ */ +/* $NetBSD: syscall.h,v 1.103 1999/07/12 23:01:48 thorpej Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp + * created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -695,10 +695,4 @@ /* syscall: "fhstatfs" ret: "int" args: "const fhandle_t *" "struct statfs *" */ #define SYS_fhstatfs 300 -/* syscall: "getcontext" ret: "int" args: "struct ucontext *" */ -#define SYS_getcontext 301 - -/* syscall: "setcontext" ret: "int" args: "const struct ucontext *" */ -#define SYS_setcontext 302 - -#define SYS_MAXSYSCALL 303 +#define SYS_MAXSYSCALL 301 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index ad9b6d73fe87..9130f6b8f92d 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $NetBSD: syscallargs.h,v 1.83 1999/07/12 22:04:01 kleink Exp $ */ +/* $NetBSD: syscallargs.h,v 1.84 1999/07/12 23:01:48 thorpej Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.95 1999/07/12 21:55:21 kleink Exp + * created from NetBSD: syscalls.master,v 1.96 1999/07/12 23:01:27 thorpej Exp */ #ifndef _SYS__SYSCALLARGS_H_ @@ -1184,14 +1184,6 @@ struct sys_fhstatfs_args { syscallarg(struct statfs *) buf; }; -struct sys_getcontext_args { - syscallarg(struct ucontext *) ucp; -}; - -struct sys_setcontext_args { - syscallarg(const struct ucontext *) ucp; -}; - /* * System call prototypes. */ @@ -1470,6 +1462,4 @@ int sys_fchroot __P((struct proc *, void *, register_t *)); int sys_fhopen __P((struct proc *, void *, register_t *)); int sys_fhstat __P((struct proc *, void *, register_t *)); int sys_fhstatfs __P((struct proc *, void *, register_t *)); -int sys_getcontext __P((struct proc *, void *, register_t *)); -int sys_setcontext __P((struct proc *, void *, register_t *)); #endif /* _SYS__SYSCALLARGS_H_ */