Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 May 2004 19:25:32 -0700 (PDT)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 52477 for review
Message-ID:  <200405080225.i482PW64021839@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=52477

Change 52477 by marcel@marcel_nfs on 2004/05/07 19:24:34

	Go directly to KDB for every trap that occurs while the
	debugger is active, not just memory related traps.

Affected files ...

.. //depot/projects/gdb/sys/alpha/alpha/trap.c#5 edit

Differences ...

==== //depot/projects/gdb/sys/alpha/alpha/trap.c#5 (text+ko) ====

@@ -283,7 +283,7 @@
 #endif
 	p = td->td_proc;
 
-	if (kdb_active && entry == ALPHA_KENTRY_MM) {
+	if (kdb_active) {
 		kdb_trap(entry, a0, framep);
 		return;
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200405080225.i482PW64021839>