debug.hh (10453:d0365cc3d05f) debug.hh (11157:bc07f3764129)
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
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/**
48 * Cause the simulator to execute a breakpoint when
49 * the given kernel function is reached
50 * @param funcName the name of the kernel function at which to break
51 */
52void breakAtKernelFunction(const char* funcName);
53
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__
54/** Cause the simulator to return to python to create a checkpoint
55 * @param when the cycle to break
56 */
57void takeCheckpoint(Tick when);
58
59/** Dump all the events currently on the event queue
60 */
61void eventqDump();
62
63int getRemoteGDBPort();
64// Remote gdb base port. 0 disables remote gdb.
65void setRemoteGDBPort(int port);
66
67#endif // __SIM_DEBUG_HH__