Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/aoutm68k use native syscallnames[] for SYSCALL_DEBUG
details: https://anonhg.NetBSD.org/src/rev/a014569c0945
branches: trunk
changeset: 569891:a014569c0945
user: jdolecek <jdolecek%NetBSD.org@localhost>
date: Sun Sep 12 11:09:32 2004 +0000
description:
use native syscallnames[] for SYSCALL_DEBUG
diffstat:
sys/compat/aoutm68k/aoutm68k_exec.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r ce9a783eebf9 -r a014569c0945 sys/compat/aoutm68k/aoutm68k_exec.c
--- a/sys/compat/aoutm68k/aoutm68k_exec.c Sun Sep 12 11:05:43 2004 +0000
+++ b/sys/compat/aoutm68k/aoutm68k_exec.c Sun Sep 12 11:09:32 2004 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: aoutm68k_exec.c,v 1.17 2003/12/20 19:01:29 fvdl Exp $ */
+/* $NetBSD: aoutm68k_exec.c,v 1.18 2004/09/12 11:09:32 jdolecek Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -37,7 +37,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: aoutm68k_exec.c,v 1.17 2003/12/20 19:01:29 fvdl Exp $");
+__KERNEL_RCSID(0, "$NetBSD: aoutm68k_exec.c,v 1.18 2004/09/12 11:09:32 jdolecek Exp $");
#if defined(_KERNEL_OPT)
#include "opt_syscall_debug.h"
@@ -54,7 +54,7 @@
extern struct sysent aoutm68k_sysent[];
#ifdef SYSCALL_DEBUG
-extern const char * const aoutm68k_syscallnames[];
+extern const char * const syscallnames[];
#endif
extern char sigcode[], esigcode[];
void aoutm68k_syscall_intern __P((struct proc *));
@@ -72,7 +72,7 @@
#endif
aoutm68k_sysent,
#ifdef SYSCALL_DEBUG
- aoutm68k_syscallnames,
+ syscallnames,
#else
NULL,
#endif
Home |
Main Index |
Thread Index |
Old Index