sim_exit.hh (3144:b6e9e1811d71) sim_exit.hh (5606:6da7a58b0bc8)
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
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 indicated tick. The message and exit_code
50/// parameters are saved in the SimLoopExitEvent to indicate why the
51/// exit occurred.
52SimLoopExitEvent *schedExitSimLoop(const std::string &message, Tick when,
53 Tick repeat = 0, EventQueue *q = NULL,
54 int exit_code = 0);
55
56/// Schedule an event to exit the simulation loop (returning to
57/// Python) at the end of the current cycle (curTick). The message
58/// and exit_code parameters are saved in the SimLoopExitEvent to
59/// indicate why the exit occurred.
60void exitSimLoop(const std::string &message, int exit_code = 0);
61
62#endif // __SIM_EXIT_HH__
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__