aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPeter Grehan <grehan@FreeBSD.org>2004-07-12 22:16:04 +0000
committerPeter Grehan <grehan@FreeBSD.org>2004-07-12 22:16:04 +0000
commit9917bd81edff3e6851380d82847f14808841e8cd (patch)
tree8988eefce18c6950858a54e9b04db0dc9d1816a0 /sys
parentf4ec5aece7dff883caec6f0dbdcdf5de1497f6a4 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/powerpc/include/cpufunc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/powerpc/include/cpufunc.h b/sys/powerpc/include/cpufunc.h
index 3d399d5611183..84be33d7ce027 100644
--- a/sys/powerpc/include/cpufunc.h
+++ b/sys/powerpc/include/cpufunc.h
@@ -47,15 +47,15 @@ powerpc_mb(void)
struct thread;
-#ifdef DDB
-void ddb_trap(void);
+#ifdef KDB
+void ppc_db_trap(void);
#endif
static __inline void
breakpoint(void)
{
-#ifdef DDB
- ddb_trap();
+#ifdef KDB
+ ppc_db_trap();
#endif
}