Source-Changes-HG archive

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

[src/trunk]: src/sys/sys cpu_Debugger() is always available on the sun2.



details:   https://anonhg.NetBSD.org/src/rev/2807677dddf7
branches:  trunk
changeset: 509596:2807677dddf7
user:      fredette <fredette%NetBSD.org@localhost>
date:      Tue May 08 13:07:35 2001 +0000

description:
cpu_Debugger() is always available on the sun2.

diffstat:

 sys/sys/systm.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r a9b8cd67a518 -r 2807677dddf7 sys/sys/systm.h
--- a/sys/sys/systm.h   Tue May 08 11:29:39 2001 +0000
+++ b/sys/sys/systm.h   Tue May 08 13:07:35 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: systm.h,v 1.126 2001/04/30 01:13:21 lukem Exp $        */
+/*     $NetBSD: systm.h,v 1.127 2001/05/08 13:07:35 fredette Exp $     */
 
 /*-
  * Copyright (c) 1982, 1988, 1991, 1993
@@ -377,8 +377,8 @@
 /* Encode out-of-band events this way when passing to cn_check_magic() */
 #define        CNC_BREAK               0x100
 
-#if defined(DDB) || defined(sun3)
-/* note that cpu_Debugger() is always available on sun3 */
+#if defined(DDB) || defined(sun3) || defined(sun2)
+/* note that cpu_Debugger() is always available on sun[23] */
 void   cpu_Debugger __P((void));
 #define Debugger       cpu_Debugger
 #endif



Home | Main Index | Thread Index | Old Index