diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2007-04-30 22:49:21 -0400 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2007-04-30 22:49:21 -0400 |
commit | 8d56145d7b6f759456993b63692165d4b510adda (patch) | |
tree | 86ef30f0ed1ba761d3f158aa584d3103767b05ab /src | |
parent | 3ae12a549e697db5a1c5baa723441435ebfeba98 (diff) | |
download | gem5-8d56145d7b6f759456993b63692165d4b510adda.tar.xz |
always skip the debugprintf function (DebugPrintf traceflag shouldn't matter). Otherwise, when you turn on debugprintf alters the execution
--HG--
extra : convert_revision : 1c9a665e3b7234cacf06c31d2e7886244a9e82bc
Diffstat (limited to 'src')
-rw-r--r-- | src/kern/linux/events.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kern/linux/events.cc b/src/kern/linux/events.cc index ba52e040a..4a3fd9f47 100644 --- a/src/kern/linux/events.cc +++ b/src/kern/linux/events.cc @@ -51,8 +51,8 @@ DebugPrintkEvent::process(ThreadContext *tc) TheISA::Arguments args(tc); Printk(args); - SkipFuncEvent::process(tc); } + SkipFuncEvent::process(tc); } } // namespace linux |