diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-10-28 10:05:58 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-10-28 10:05:58 -0500 |
commit | cec7f73abf841a65bdce38d6eb67a643e4879335 (patch) | |
tree | 1c2fbce339a33ef5efc8e64a3f623482b04bb46e /sim/sim_events.hh | |
parent | 5cf0b0541b7536221643606e368bd0d0e530125a (diff) | |
download | gem5-cec7f73abf841a65bdce38d6eb67a643e4879335.tar.xz |
emulate callpal halt for non FULL_SYSTEM
in the process make m5_exit more generic
arch/alpha/ev5.cc:
arch/alpha/ev5.hh:
There's no reason that this needs to be in an arch specific file
arch/alpha/isa_desc:
m5_exit -> SimExit
Emulate callpal halt and cause the simulator to exit
while we're at it, sort #includes
sim/sim_events.cc:
sim/sim_events.hh:
move the m5_exit function here, renaming it to SimExit.
Also Allow the caller to pass in the termination message.
--HG--
extra : convert_revision : 54b43b17a412ab387b8672c27ef0b04fce10ee15
Diffstat (limited to 'sim/sim_events.hh')
-rw-r--r-- | sim/sim_events.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sim/sim_events.hh b/sim/sim_events.hh index b1ae7793a..0029a8404 100644 --- a/sim/sim_events.hh +++ b/sim/sim_events.hh @@ -66,6 +66,8 @@ class SimExitEvent : public Event virtual const char *description(); }; +void SimExit(const char *message); + // // Event class to terminate simulation after 'n' related events have // occurred using a shared counter: used to terminate when *all* |