svn commit: r281111 - head/sys/powerpc/include
Justin Hibbits
jhibbits at FreeBSD.org
Sun Apr 5 16:35:14 UTC 2015
Author: jhibbits
Date: Sun Apr 5 16:35:13 2015
New Revision: 281111
URL: https://svnweb.freebsd.org/changeset/base/281111
Log:
Missed this in r281096 as well.
Renumber EXC_DEBUG to be above EXC_LAST, so as not to conflict with AIM trap
vectors.
Modified:
head/sys/powerpc/include/trap.h
Modified: head/sys/powerpc/include/trap.h
==============================================================================
--- head/sys/powerpc/include/trap.h Sun Apr 5 15:27:56 2015 (r281110)
+++ head/sys/powerpc/include/trap.h Sun Apr 5 16:35:13 2015 (r281111)
@@ -85,7 +85,7 @@
#define EXC_DTMISS 0x1100 /* Data TLB Miss */
#define EXC_ITMISS 0x1200 /* Instruction TLB Miss */
#define EXC_APU 0x1300 /* Auxiliary Processing Unit */
-#define EXC_DEBUG 0x2000 /* Debug trap */
+#define EXC_DEBUG 0x2f10 /* Debug trap */
#define EXC_LAST 0x2f00 /* Last possible exception vector */
More information about the svn-src-all
mailing list