sim_exit.hh (5606:6da7a58b0bc8) sim_exit.hh (6214:1ec0ec8933ae)
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;

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

29 * Steve Reinhardt
30 */
31
32#ifndef __SIM_EXIT_HH__
33#define __SIM_EXIT_HH__
34
35#include <string>
36
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;

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

29 * Steve Reinhardt
30 */
31
32#ifndef __SIM_EXIT_HH__
33#define __SIM_EXIT_HH__
34
35#include <string>
36
37#include "sim/host.hh"
37#include "base/types.hh"
38
39// forward declaration
40class Callback;
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__
38
39// forward declaration
40class Callback;
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__