|
@@ -106,7 +106,7 @@ MachineCheckException (struct pt_regs *regs)
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
|
|
+#ifdef CONFIG_CMD_KGDB
|
|
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
|
|
return;
|
|
|
#endif
|
|
@@ -144,7 +144,7 @@ MachineCheckException (struct pt_regs *regs)
|
|
|
void
|
|
|
AlignmentException (struct pt_regs *regs)
|
|
|
{
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
|
|
+#ifdef CONFIG_CMD_KGDB
|
|
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
|
|
return;
|
|
|
#endif
|
|
@@ -156,7 +156,7 @@ AlignmentException (struct pt_regs *regs)
|
|
|
void
|
|
|
ProgramCheckException (struct pt_regs *regs)
|
|
|
{
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
|
|
+#ifdef CONFIG_CMD_KGDB
|
|
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
|
|
return;
|
|
|
#endif
|
|
@@ -168,7 +168,7 @@ ProgramCheckException (struct pt_regs *regs)
|
|
|
void
|
|
|
SoftEmuException (struct pt_regs *regs)
|
|
|
{
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
|
|
+#ifdef CONFIG_CMD_KGDB
|
|
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
|
|
return;
|
|
|
#endif
|
|
@@ -181,7 +181,7 @@ SoftEmuException (struct pt_regs *regs)
|
|
|
void
|
|
|
UnknownException (struct pt_regs *regs)
|
|
|
{
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_KGDB)
|
|
|
+#ifdef CONFIG_CMD_KGDB
|
|
|
if (debugger_exception_handler && (*debugger_exception_handler)(regs))
|
|
|
return;
|
|
|
#endif
|
|
@@ -190,7 +190,7 @@ UnknownException (struct pt_regs *regs)
|
|
|
_exception (0, regs);
|
|
|
}
|
|
|
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
|
|
|
+#ifdef CONFIG_CMD_BEDBUG
|
|
|
extern void do_bedbug_breakpoint (struct pt_regs *);
|
|
|
#endif
|
|
|
|
|
@@ -199,7 +199,7 @@ DebugException (struct pt_regs *regs)
|
|
|
{
|
|
|
printf ("Debugger trap at @ %lx\n", regs->nip );
|
|
|
show_regs (regs);
|
|
|
-#if (CONFIG_COMMANDS & CFG_CMD_BEDBUG)
|
|
|
+#ifdef CONFIG_CMD_BEDBUG
|
|
|
do_bedbug_breakpoint (regs);
|
|
|
#endif
|
|
|
}
|