Deleted Added
sdiff udiff text old ( 3144:b6e9e1811d71 ) new ( 5606:6da7a58b0bc8 )
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;

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

41class EventQueue;
42class SimLoopExitEvent;
43
44/// Register a callback to be called when Python exits. Defined in
45/// sim/main.cc.
46void registerExitCallback(Callback *);
47
48/// Schedule an event to exit the simulation loop (returning to
49/// Python) at the end of the current cycle (curTick). The message
50/// and exit_code parameters are saved in the SimLoopExitEvent to
51/// indicate why the exit occurred.
52void exitSimLoop(const std::string &message, int exit_code = 0);
53
54#endif // __SIM_EXIT_HH__