debug.cc (9356:b279bad40aa3) debug.cc (9960:501c7384a5bc)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 68 unchanged lines hidden (view full) ---

77 return "debug breakpoint";
78}
79
80//
81// handy function to schedule DebugBreakEvent on main event queue
82// (callable from debugger)
83//
84void
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 68 unchanged lines hidden (view full) ---

77 return "debug breakpoint";
78}
79
80//
81// handy function to schedule DebugBreakEvent on main event queue
82// (callable from debugger)
83//
84void
85schedBreakCycle(Tick when)
85schedBreak(Tick when)
86{
87 mainEventQueue.schedule(new DebugBreakEvent, when);
88 warn("need to stop all queues");
89}
90
91///
92/// Function to cause the simulator to take a checkpoint from the debugger
93///

--- 47 unchanged lines hidden ---
86{
87 mainEventQueue.schedule(new DebugBreakEvent, when);
88 warn("need to stop all queues");
89}
90
91///
92/// Function to cause the simulator to take a checkpoint from the debugger
93///

--- 47 unchanged lines hidden ---