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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user