diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/bsdos/bsdos_syscall.h | 7 | ||||
-rw-r--r-- | sys/compat/bsdos/bsdos_syscallargs.h | 5 | ||||
-rw-r--r-- | sys/compat/bsdos/bsdos_syscalls.c | 6 | ||||
-rw-r--r-- | sys/compat/freebsd/freebsd_syscall.h | 7 | ||||
-rw-r--r-- | sys/compat/freebsd/freebsd_syscallargs.h | 12 | ||||
-rw-r--r-- | sys/compat/freebsd/freebsd_syscalls.c | 10 | ||||
-rw-r--r-- | sys/compat/netbsd/netbsd_syscall.h | 7 | ||||
-rw-r--r-- | sys/compat/netbsd/netbsd_syscallargs.h | 5 | ||||
-rw-r--r-- | sys/compat/netbsd/netbsd_syscalls.c | 6 | ||||
-rw-r--r-- | sys/kern/syscalls.c | 6 | ||||
-rw-r--r-- | sys/sys/syscall.h | 7 | ||||
-rw-r--r-- | sys/sys/syscallargs.h | 9 |
12 files changed, 28 insertions, 59 deletions
diff --git a/sys/compat/bsdos/bsdos_syscall.h b/sys/compat/bsdos/bsdos_syscall.h index 829a40d9620..236e074ce51 100644 --- a/sys/compat/bsdos/bsdos_syscall.h +++ b/sys/compat/bsdos/bsdos_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: bsdos_syscall.h,v 1.16 2004/07/13 21:06:33 millert Exp $ */ +/* $OpenBSD: bsdos_syscall.h,v 1.17 2005/06/17 20:42:31 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2004/07/13 21:04:28 millert Exp + * created from OpenBSD: syscalls.master,v 1.16 2005/06/17 20:39:14 millert Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -526,9 +526,6 @@ /* syscall: "munlock" ret: "int" args: "caddr_t" "size_t" */ #define BSDOS_SYS_munlock 204 -/* syscall: "undelete" ret: "int" args: "char *" */ -#define BSDOS_SYS_undelete 205 - /* syscall: "__semctl" ret: "int" args: "int" "int" "int" "union semun *" */ #define BSDOS_SYS___semctl 220 diff --git a/sys/compat/bsdos/bsdos_syscallargs.h b/sys/compat/bsdos/bsdos_syscallargs.h index d4b8c7ea3a1..9478d2d5b87 100644 --- a/sys/compat/bsdos/bsdos_syscallargs.h +++ b/sys/compat/bsdos/bsdos_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: bsdos_syscallargs.h,v 1.17 2004/07/13 21:06:33 millert Exp $ */ +/* $OpenBSD: bsdos_syscallargs.h,v 1.18 2005/06/17 20:42:31 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2004/07/13 21:04:28 millert Exp + * created from OpenBSD: syscalls.master,v 1.16 2005/06/17 20:39:14 millert Exp */ #ifdef syscallarg @@ -227,7 +227,6 @@ int sys_ftruncate(struct proc *, void *, register_t *); int sys___sysctl(struct proc *, void *, register_t *); int sys_mlock(struct proc *, void *, register_t *); int sys_munlock(struct proc *, void *, register_t *); -int sys_undelete(struct proc *, void *, register_t *); #ifdef SYSVSEM int sys___semctl(struct proc *, void *, register_t *); int sys_semget(struct proc *, void *, register_t *); diff --git a/sys/compat/bsdos/bsdos_syscalls.c b/sys/compat/bsdos/bsdos_syscalls.c index 64dae238398..5ada52be881 100644 --- a/sys/compat/bsdos/bsdos_syscalls.c +++ b/sys/compat/bsdos/bsdos_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: bsdos_syscalls.c,v 1.16 2004/07/13 21:06:33 millert Exp $ */ +/* $OpenBSD: bsdos_syscalls.c,v 1.17 2005/06/17 20:42:31 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.15 2004/07/13 21:04:28 millert Exp + * created from OpenBSD: syscalls.master,v 1.16 2005/06/17 20:39:14 millert Exp */ char *bsdos_syscallnames[] = { @@ -248,7 +248,7 @@ char *bsdos_syscallnames[] = { "__sysctl", /* 202 = __sysctl */ "mlock", /* 203 = mlock */ "munlock", /* 204 = munlock */ - "undelete", /* 205 = undelete */ + "#205 (unimplemented sys_undelete)", /* 205 = unimplemented sys_undelete */ "#206 (unimplemented)", /* 206 = unimplemented */ "#207 (unimplemented)", /* 207 = unimplemented */ "#208 (unimplemented)", /* 208 = unimplemented */ diff --git a/sys/compat/freebsd/freebsd_syscall.h b/sys/compat/freebsd/freebsd_syscall.h index 0dced89f843..1b255b23257 100644 --- a/sys/compat/freebsd/freebsd_syscall.h +++ b/sys/compat/freebsd/freebsd_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: freebsd_syscall.h,v 1.28 2005/02/19 21:20:49 matthieu Exp $ */ +/* $OpenBSD: freebsd_syscall.h,v 1.29 2005/06/17 20:42:31 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.27 2005/02/19 21:19:28 matthieu Exp + * created from OpenBSD: syscalls.master,v 1.28 2005/06/17 20:39:14 millert Exp */ /* syscall: "syscall" ret: "int" args: */ @@ -553,9 +553,6 @@ /* syscall: "munlock" ret: "int" args: "caddr_t" "size_t" */ #define FREEBSD_SYS_munlock 204 -/* syscall: "undelete" ret: "int" args: "char *" */ -#define FREEBSD_SYS_undelete 205 - /* syscall: "getpgid" ret: "int" args: "pid_t" */ #define FREEBSD_SYS_getpgid 207 diff --git a/sys/compat/freebsd/freebsd_syscallargs.h b/sys/compat/freebsd/freebsd_syscallargs.h index 3e2311d37d8..d5d75cb7233 100644 --- a/sys/compat/freebsd/freebsd_syscallargs.h +++ b/sys/compat/freebsd/freebsd_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: freebsd_syscallargs.h,v 1.30 2005/02/19 21:20:49 matthieu Exp $ */ +/* $OpenBSD: freebsd_syscallargs.h,v 1.31 2005/06/17 20:42:31 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.27 2005/02/19 21:19:28 matthieu Exp + * created from OpenBSD: syscalls.master,v 1.28 2005/06/17 20:39:14 millert Exp */ #ifdef syscallarg @@ -222,10 +222,6 @@ struct freebsd_sys_truncate_args { syscallarg(off_t) length; }; -struct freebsd_sys_undelete_args { - syscallarg(char *) path; -}; - struct freebsd_sys_poll2_args { syscallarg(struct pollfd *) fds; syscallarg(unsigned long) nfds; @@ -471,10 +467,6 @@ int sys_ftruncate(struct proc *, void *, register_t *); int sys___sysctl(struct proc *, void *, register_t *); int sys_mlock(struct proc *, void *, register_t *); int sys_munlock(struct proc *, void *, register_t *); -#ifdef FREEBSD_BASED_ON_44LITE_R2 -int freebsd_sys_undelete(struct proc *, void *, register_t *); -#else -#endif int sys_getpgid(struct proc *, void *, register_t *); int sys_poll(struct proc *, void *, register_t *); #ifdef SYSVSEM diff --git a/sys/compat/freebsd/freebsd_syscalls.c b/sys/compat/freebsd/freebsd_syscalls.c index e15c9df28fe..cc58a9d1e19 100644 --- a/sys/compat/freebsd/freebsd_syscalls.c +++ b/sys/compat/freebsd/freebsd_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: freebsd_syscalls.c,v 1.28 2005/02/19 21:20:49 matthieu Exp $ */ +/* $OpenBSD: freebsd_syscalls.c,v 1.29 2005/06/17 20:42:31 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.27 2005/02/19 21:19:28 matthieu Exp + * created from OpenBSD: syscalls.master,v 1.28 2005/06/17 20:39:14 millert Exp */ char *freebsd_syscallnames[] = { @@ -256,11 +256,7 @@ char *freebsd_syscallnames[] = { "__sysctl", /* 202 = __sysctl */ "mlock", /* 203 = mlock */ "munlock", /* 204 = munlock */ -#ifdef FREEBSD_BASED_ON_44LITE_R2 - "undelete", /* 205 = undelete */ -#else - "#205 (unimplemented undelete)", /* 205 = unimplemented undelete */ -#endif + "#205 (unimplemented sys_undelete)", /* 205 = unimplemented sys_undelete */ "#206 (unimplemented futimes)", /* 206 = unimplemented futimes */ "getpgid", /* 207 = getpgid */ "#208 (unimplemented reboot)", /* 208 = unimplemented reboot */ diff --git a/sys/compat/netbsd/netbsd_syscall.h b/sys/compat/netbsd/netbsd_syscall.h index ef35366847d..7dbd1b5f458 100644 --- a/sys/compat/netbsd/netbsd_syscall.h +++ b/sys/compat/netbsd/netbsd_syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscall.h,v 1.25 2004/07/13 21:06:33 millert Exp $ */ +/* $OpenBSD: netbsd_syscall.h,v 1.26 2005/06/17 20:42:31 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 2004/07/13 21:04:29 millert Exp + * created from; OpenBSD: syscalls.master,v 1.25 2005/06/17 20:39:14 millert Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -553,9 +553,6 @@ /* syscall: "munlock" ret: "int" args: "const void *" "size_t" */ #define NETBSD_SYS_munlock 204 -/* syscall: "undelete" ret: "int" args: "const char *" */ -#define NETBSD_SYS_undelete 205 - /* syscall: "futimes" ret: "int" args: "int" "const struct timeval *" */ #define NETBSD_SYS_futimes 206 diff --git a/sys/compat/netbsd/netbsd_syscallargs.h b/sys/compat/netbsd/netbsd_syscallargs.h index 5817c70b150..550d534eaf5 100644 --- a/sys/compat/netbsd/netbsd_syscallargs.h +++ b/sys/compat/netbsd/netbsd_syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscallargs.h,v 1.26 2004/07/13 21:06:33 millert Exp $ */ +/* $OpenBSD: netbsd_syscallargs.h,v 1.27 2005/06/17 20:42:31 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 2004/07/13 21:04:29 millert Exp + * created from; OpenBSD: syscalls.master,v 1.25 2005/06/17 20:39:14 millert Exp */ #ifdef syscallarg @@ -439,7 +439,6 @@ int sys_ftruncate(struct proc *, void *, register_t *); int sys___sysctl(struct proc *, void *, register_t *); int sys_mlock(struct proc *, void *, register_t *); int sys_munlock(struct proc *, void *, register_t *); -int sys_undelete(struct proc *, void *, register_t *); int sys_futimes(struct proc *, void *, register_t *); int sys_getpgid(struct proc *, void *, register_t *); int sys_xfspioctl(struct proc *, void *, register_t *); diff --git a/sys/compat/netbsd/netbsd_syscalls.c b/sys/compat/netbsd/netbsd_syscalls.c index a914c12f66b..db9f2b44f48 100644 --- a/sys/compat/netbsd/netbsd_syscalls.c +++ b/sys/compat/netbsd/netbsd_syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: netbsd_syscalls.c,v 1.25 2004/07/13 21:06:33 millert Exp $ */ +/* $OpenBSD: netbsd_syscalls.c,v 1.26 2005/06/17 20:42:31 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.24 2004/07/13 21:04:29 millert Exp + * created from; OpenBSD: syscalls.master,v 1.25 2005/06/17 20:39:14 millert Exp */ char *netbsd_syscallnames[] = { @@ -264,7 +264,7 @@ char *netbsd_syscallnames[] = { "__sysctl", /* 202 = __sysctl */ "mlock", /* 203 = mlock */ "munlock", /* 204 = munlock */ - "undelete", /* 205 = undelete */ + "#205 (unimplemented sys_undelete)", /* 205 = unimplemented sys_undelete */ "futimes", /* 206 = futimes */ "getpgid", /* 207 = getpgid */ "xfspioctl", /* 208 = xfspioctl */ diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 12cc734ceb2..fb92d87500c 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -1,10 +1,10 @@ -/* $OpenBSD: syscalls.c,v 1.86 2004/07/15 14:36:08 deraadt Exp $ */ +/* $OpenBSD: syscalls.c,v 1.87 2005/06/17 20:42:32 millert Exp $ */ /* * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.76 2004/07/15 14:35:34 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.77 2005/06/17 20:39:14 millert Exp */ char *syscallnames[] = { @@ -248,7 +248,7 @@ char *syscallnames[] = { "__sysctl", /* 202 = __sysctl */ "mlock", /* 203 = mlock */ "munlock", /* 204 = munlock */ - "undelete", /* 205 = undelete */ + "#205 (unimplemented sys_undelete)", /* 205 = unimplemented sys_undelete */ "futimes", /* 206 = futimes */ "getpgid", /* 207 = getpgid */ "xfspioctl", /* 208 = xfspioctl */ diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h index 9ba57b5af00..caed72fbca4 100644 --- a/sys/sys/syscall.h +++ b/sys/sys/syscall.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscall.h,v 1.84 2004/07/15 14:36:08 deraadt Exp $ */ +/* $OpenBSD: syscall.h,v 1.85 2005/06/17 20:42:32 millert Exp $ */ /* * System call numbers. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.76 2004/07/15 14:35:34 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.77 2005/06/17 20:39:14 millert Exp */ /* syscall: "syscall" ret: "int" args: "int" "..." */ @@ -503,9 +503,6 @@ /* syscall: "munlock" ret: "int" args: "const void *" "size_t" */ #define SYS_munlock 204 -/* syscall: "undelete" ret: "int" args: "const char *" */ -#define SYS_undelete 205 - /* syscall: "futimes" ret: "int" args: "int" "const struct timeval *" */ #define SYS_futimes 206 diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h index 6b58af621a4..baee7583148 100644 --- a/sys/sys/syscallargs.h +++ b/sys/sys/syscallargs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: syscallargs.h,v 1.86 2004/07/15 14:36:08 deraadt Exp $ */ +/* $OpenBSD: syscallargs.h,v 1.87 2005/06/17 20:42:32 millert Exp $ */ /* * System call argument lists. * * DO NOT EDIT-- this file is automatically generated. - * created from; OpenBSD: syscalls.master,v 1.76 2004/07/15 14:35:34 deraadt Exp + * created from; OpenBSD: syscalls.master,v 1.77 2005/06/17 20:39:14 millert Exp */ #ifdef syscallarg @@ -898,10 +898,6 @@ struct sys_munlock_args { syscallarg(size_t) len; }; -struct sys_undelete_args { - syscallarg(const char *) path; -}; - struct sys_futimes_args { syscallarg(int) fd; syscallarg(const struct timeval *) tptr; @@ -1477,7 +1473,6 @@ int sys_ftruncate(struct proc *, void *, register_t *); int sys___sysctl(struct proc *, void *, register_t *); int sys_mlock(struct proc *, void *, register_t *); int sys_munlock(struct proc *, void *, register_t *); -int sys_undelete(struct proc *, void *, register_t *); int sys_futimes(struct proc *, void *, register_t *); int sys_getpgid(struct proc *, void *, register_t *); int sys_xfspioctl(struct proc *, void *, register_t *); |