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

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

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
54/** Cause the simulator to return to python to create a checkpoint
55 * @param when the cycle to break

--- 12 unchanged lines hidden ---