diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2010-07-05 21:39:38 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2010-07-05 21:39:38 -0700 |
commit | 30ce620d1d7b04387072e2dcf87530c33eb7c608 (patch) | |
tree | 04d03bbf19ffcec6691b9348b544faf0e5f80992 /src/python/m5 | |
parent | 345dfd1b41729162ff31da010cce0659ce810897 (diff) | |
download | gem5-30ce620d1d7b04387072e2dcf87530c33eb7c608.tar.xz |
sim: fold StartupCallback into SimObject
There used to be a reason to have StartupCallback
be a separate object, but not any more. Now
it's just confusing.
Diffstat (limited to 'src/python/m5')
-rw-r--r-- | src/python/m5/simulate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/m5/simulate.py b/src/python/m5/simulate.py index 291fdc7b7..e43f90173 100644 --- a/src/python/m5/simulate.py +++ b/src/python/m5/simulate.py @@ -91,7 +91,7 @@ def simulate(*args, **kwargs): global need_resume, need_startup if need_startup: - internal.core.SimStartup() + internal.core.startupAll() need_startup = False for root in need_resume: |