Deleted Added
sdiff udiff text old ( 2802:babfc298ac86 ) new ( 3645:2bf1f7c69254 )
full compact
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;

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

89
90const char *
91DebugBreakEvent::description()
92{
93 return "debug break";
94}
95
96//
97// handy function to schedule DebugBreakEvent on main event queue
98// (callable from debugger)
99//
100void
101schedBreakCycle(Tick when)
102{
103 new DebugBreakEvent(&mainEventQueue, when);
104}
105
106void
107eventqDump()
108{
109 mainEventQueue.dump();
110}
111