debug.cc (5512:755fcaf7a4cf) debug.cc (5543:3af77710f397)
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;

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

57// schedule the event to break at a particular cycle
58//
59class DebugBreakEvent : public Event
60{
61 public:
62
63 DebugBreakEvent(EventQueue *q, Tick _when);
64
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;

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

57// schedule the event to break at a particular cycle
58//
59class DebugBreakEvent : public Event
60{
61 public:
62
63 DebugBreakEvent(EventQueue *q, Tick _when);
64
65 void process(); // process event
65 void process(); // process event
66 virtual const char *description() const;
67};
68
69//
70// constructor: schedule at specified time
71//
72DebugBreakEvent::DebugBreakEvent(EventQueue *q, Tick _when)
73 : Event(q, Debug_Break_Pri)

--- 54 unchanged lines hidden ---
66 virtual const char *description() const;
67};
68
69//
70// constructor: schedule at specified time
71//
72DebugBreakEvent::DebugBreakEvent(EventQueue *q, Tick _when)
73 : Event(q, Debug_Break_Pri)

--- 54 unchanged lines hidden ---