projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ccfdc53
)
sim: fix event priority name for debug-start option
author
Anthony Gutierrez
<atgutier@umich.edu>
Tue, 12 Nov 2013 16:46:48 +0000
(11:46 -0500)
committer
Anthony Gutierrez
<atgutier@umich.edu>
Tue, 12 Nov 2013 16:46:48 +0000
(11:46 -0500)
src/sim/eventq.hh
patch
|
blob
|
history
diff --git
a/src/sim/eventq.hh
b/src/sim/eventq.hh
index 80086ccefeed8a31fc8f2822bad356e72a057470..223b4941c40975d7875d463e9f983b390b92a80a 100644
(file)
--- 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