debug.cc (8278:4fe5f7f5094c) debug.cc (8581:56f97760eadd)
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;

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

52 void process(); // process event
53 virtual const char *description() const;
54};
55
56//
57// constructor: schedule at specified time
58//
59DebugBreakEvent::DebugBreakEvent()
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;

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

52 void process(); // process event
53 virtual const char *description() const;
54};
55
56//
57// constructor: schedule at specified time
58//
59DebugBreakEvent::DebugBreakEvent()
60 : Event(Debug_Break_Pri)
60 : Event(Debug_Break_Pri, AutoDelete)
61{
61{
62 setFlags(AutoDelete);
63}
64
65//
66// handle debug event: set debugger breakpoint on this function
67//
68void
69DebugBreakEvent::process()
70{

--- 71 unchanged lines hidden ---
62}
63
64//
65// handle debug event: set debugger breakpoint on this function
66//
67void
68DebugBreakEvent::process()
69{

--- 71 unchanged lines hidden ---