diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-12-18 10:14:17 +0000 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-12-18 10:14:17 +0000 |
commit | b5a54eb64ebce9c217c1d44cc93aebb7cb508c6d (patch) | |
tree | 7a82edbab054007997cc18cfd5291160f0c43875 /src | |
parent | 219f1c1a7fb1939f5a65fb692f399220d90dc056 (diff) | |
download | gem5-b5a54eb64ebce9c217c1d44cc93aebb7cb508c6d.tar.xz |
sim: Use the old work item behavior by default
When adding an option to forward work items to the Python environment,
the new behavior was accidentally enabled by default. Set the value of
exit_on_work_items to False by default to revert to the old behavior
unless the simulation scripts explicitly requests work item
forwarding.
Diffstat (limited to 'src')
-rw-r--r-- | src/sim/System.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/System.py b/src/sim/System.py index cdf97f8a9..15c1a2662 100644 --- a/src/sim/System.py +++ b/src/sim/System.py @@ -73,7 +73,7 @@ class System(MemObject): cache_line_size = Param.Unsigned(64, "Cache line size in bytes") - exit_on_work_items = Param.Bool(True, "Exit from the simulation loop when " + exit_on_work_items = Param.Bool(False, "Exit from the simulation loop when " "encountering work item annotations.") work_item_id = Param.Int(-1, "specific work item id") num_work_ids = Param.Int(16, "Number of distinct work item types") |