remove extern "C" from the functions we all from gdb. This isn't requried and trips up GDB sometimes when i thinks the extern

name should be mangled, but it isn't

--HG--
extra : convert_revision : 62e2a1989e8fd3d73958d3a3e2d00e378488e642
This commit is contained in:
Ali Saidi
2006-06-26 17:49:49 -04:00
parent d80acd37bd
commit b1cfe01b57
6 changed files with 3 additions and 13 deletions

View File

@@ -127,12 +127,12 @@ DebugContext::checkParams()
// handy function to schedule DebugBreakEvent on main event queue
// (callable from debugger)
//
extern "C" void sched_break_cycle(Tick when)
void sched_break_cycle(Tick when)
{
new DebugBreakEvent(&mainEventQueue, when);
}
extern "C" void eventq_dump()
void eventq_dump()
{
mainEventQueue.dump();
}