Deleted Added
sdiff udiff text old ( 10453:d0365cc3d05f ) new ( 11157:bc07f3764129 )
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;

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

39 */
40
41
42/** Cause the simulator to execute a breakpoint
43 * @param when the tick to break
44 */
45void schedBreak(Tick when);
46
47/** Cause the simulator to return to python to create a checkpoint
48 * @param when the cycle to break
49 */
50void takeCheckpoint(Tick when);
51
52/** Dump all the events currently on the event queue
53 */
54void eventqDump();
55
56int getRemoteGDBPort();
57// Remote gdb base port. 0 disables remote gdb.
58void setRemoteGDBPort(int port);
59
60#endif // __SIM_DEBUG_HH__