debug.cc (5882:5a047c3f3795) debug.cc (8231:51cf7f3cf9ac)
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;

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

62}
63
64//
65// handle debug event: set debugger breakpoint on this function
66//
67void
68DebugBreakEvent::process()
69{
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;

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

62}
63
64//
65// handle debug event: set debugger breakpoint on this function
66//
67void
68DebugBreakEvent::process()
69{
70 debug_break();
70 Debug::breakpoint();
71}
72
73
74const char *
75DebugBreakEvent::description() const
76{
71}
72
73
74const char *
75DebugBreakEvent::description() const
76{
77 return "debug break";
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)

--- 44 unchanged lines hidden ---
78}
79
80//
81// handy function to schedule DebugBreakEvent on main event queue
82// (callable from debugger)
83//
84void
85schedBreakCycle(Tick when)

--- 44 unchanged lines hidden ---