diff options
author | Anthony Gutierrez <atgutier@umich.edu> | 2013-11-12 11:46:48 -0500 |
---|---|---|
committer | Anthony Gutierrez <atgutier@umich.edu> | 2013-11-12 11:46:48 -0500 |
commit | 99d6c3b7e004477dae9b3f7c59c24056362affd8 (patch) | |
tree | c1cce86a1a7107655c940fee9f8848f7cc8ee9e6 /src | |
parent | ccfdc533b9d679f1596d43d647a093885d5e74ab (diff) | |
download | gem5-99d6c3b7e004477dae9b3f7c59c24056362affd8.tar.xz |
sim: fix event priority name for debug-start option
Diffstat (limited to 'src')
-rw-r--r-- | src/sim/eventq.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sim/eventq.hh b/src/sim/eventq.hh index 80086ccef..223b4941c 100644 --- a/src/sim/eventq.hh +++ b/src/sim/eventq.hh @@ -190,7 +190,7 @@ class Event : public Serializable /// If we enable tracing on a particular cycle, do that as the /// very first thing so we don't miss any of the events on /// that cycle (even if we enter the debugger). - static const Priority Trace_Enable_Pri = -101; + static const Priority Debug_Enable_Pri = -101; /// Breakpoints should happen before anything else (except /// enabling trace output), so we don't miss any action when |