Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/compat/linux/arch/arm Regen (breakpoint() implemented).



details:   https://anonhg.NetBSD.org/src/rev/596ec970968c
branches:  trunk
changeset: 521287:596ec970968c
user:      bjh21 <bjh21%NetBSD.org@localhost>
date:      Sun Jan 27 15:28:22 2002 +0000

description:
Regen (breakpoint() implemented).

diffstat:

 sys/compat/linux/arch/arm/linux_syscall.h     |  7 +++++--
 sys/compat/linux/arch/arm/linux_syscallargs.h |  5 +++--
 sys/compat/linux/arch/arm/linux_syscalls.c    |  8 ++++----
 sys/compat/linux/arch/arm/linux_sysent.c      |  8 ++++----
 4 files changed, 16 insertions(+), 12 deletions(-)

diffs (109 lines):

diff -r 16bf6b279af9 -r 596ec970968c sys/compat/linux/arch/arm/linux_syscall.h
--- a/sys/compat/linux/arch/arm/linux_syscall.h Sun Jan 27 15:27:33 2002 +0000
+++ b/sys/compat/linux/arch/arm/linux_syscall.h Sun Jan 27 15:28:22 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscall.h,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
+/* $NetBSD: linux_syscall.h,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
 
 /*
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp 
+ * created from        NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp 
  */
 
 /* syscall: "nosys" ret: "int" args: */
@@ -538,6 +538,9 @@
 /* syscall: "getfsuid32" ret: "int" args: */
 #define        LINUX_SYS_getfsuid32    216
 
+/* syscall: "breakpoint" ret: "int" args: */
+#define        LINUX_SYS_breakpoint    257
+
 /* syscall: "cacheflush" ret: "int" args: "uintptr_t" "intptr_t" */
 #define        LINUX_SYS_cacheflush    258
 
diff -r 16bf6b279af9 -r 596ec970968c sys/compat/linux/arch/arm/linux_syscallargs.h
--- a/sys/compat/linux/arch/arm/linux_syscallargs.h     Sun Jan 27 15:27:33 2002 +0000
+++ b/sys/compat/linux/arch/arm/linux_syscallargs.h     Sun Jan 27 15:28:22 2002 +0000
@@ -1,10 +1,10 @@
-/* $NetBSD: linux_syscallargs.h,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
+/* $NetBSD: linux_syscallargs.h,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
 
 /*
  * System call argument lists.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp 
+ * created from        NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp 
  */
 
 #ifndef _LINUX_SYS__SYSCALLARGS_H_
@@ -706,5 +706,6 @@
 int    sys_setgid(struct proc *, void *, register_t *);
 int    linux_sys_setfsuid(struct proc *, void *, register_t *);
 int    linux_sys_getfsuid(struct proc *, void *, register_t *);
+int    linux_sys_breakpoint(struct proc *, void *, register_t *);
 int    linux_sys_cacheflush(struct proc *, void *, register_t *);
 #endif /* _LINUX_SYS__SYSCALLARGS_H_ */
diff -r 16bf6b279af9 -r 596ec970968c sys/compat/linux/arch/arm/linux_syscalls.c
--- a/sys/compat/linux/arch/arm/linux_syscalls.c        Sun Jan 27 15:27:33 2002 +0000
+++ b/sys/compat/linux/arch/arm/linux_syscalls.c        Sun Jan 27 15:28:22 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_syscalls.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
+/* $NetBSD: linux_syscalls.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
 
 /*
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp 
+ * created from        NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_syscalls.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $");
 
 #if defined(_KERNEL_OPT)
 #if defined(_KERNEL_OPT)
@@ -289,7 +289,7 @@
        "#254 (unimplemented)",         /* 254 = unimplemented */
        "#255 (unimplemented)",         /* 255 = unimplemented */
        "#256 (unimplemented)",         /* 256 = unimplemented */
-       "#257 (unimplemented breakpoint)",              /* 257 = unimplemented breakpoint */
+       "breakpoint",                   /* 257 = breakpoint */
        "cacheflush",                   /* 258 = cacheflush */
        "#259 (unimplemented usr26)",           /* 259 = unimplemented usr26 */
        "#260 (unimplemented usr32)",           /* 260 = unimplemented usr32 */
diff -r 16bf6b279af9 -r 596ec970968c sys/compat/linux/arch/arm/linux_sysent.c
--- a/sys/compat/linux/arch/arm/linux_sysent.c  Sun Jan 27 15:27:33 2002 +0000
+++ b/sys/compat/linux/arch/arm/linux_sysent.c  Sun Jan 27 15:28:22 2002 +0000
@@ -1,14 +1,14 @@
-/* $NetBSD: linux_sysent.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $ */
+/* $NetBSD: linux_sysent.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $ */
 
 /*
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * created from        NetBSD: syscalls.master,v 1.5 2002/01/27 14:08:56 bjh21 Exp 
+ * created from        NetBSD: syscalls.master,v 1.6 2002/01/27 15:27:33 bjh21 Exp 
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.5 2002/01/27 14:09:38 bjh21 Exp $");
+__KERNEL_RCSID(0, "$NetBSD: linux_sysent.c,v 1.6 2002/01/27 15:28:22 bjh21 Exp $");
 
 #if defined(_KERNEL_OPT)
 #include "opt_compat_43.h"
@@ -548,7 +548,7 @@
        { 0, 0, 0,
            linux_sys_nosys },                  /* 256 = unimplemented */
        { 0, 0, 0,
-           linux_sys_nosys },                  /* 257 = unimplemented breakpoint */
+           linux_sys_breakpoint },             /* 257 = breakpoint */
        { 2, s(struct linux_sys_cacheflush_args), 0,
            linux_sys_cacheflush },             /* 258 = cacheflush */
        { 0, 0, 0,



Home | Main Index | Thread Index | Old Index