diff options
author | Nathan Binkert <binkertn@umich.edu> | 2007-02-17 20:32:39 -0800 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2007-02-17 20:32:39 -0800 |
commit | 08f024d3ff68ae533f9d96ebd0e470a1874a7d86 (patch) | |
tree | 435b7687ecc4d4f4d4251c6a70821c06e5cb0b5a /src/base | |
parent | 18e245ad0b6ee99f23e2ed67c150413295c69c1f (diff) | |
download | gem5-08f024d3ff68ae533f9d96ebd0e470a1874a7d86.tar.xz |
Default to tracing being disabled in C++, it will be turned
on in python. Fix the trace start code so it actually starts
when it is suppsed to. Make the Exec tracing stuff obey the
trace enabled flag.
--HG--
extra : convert_revision : 634ba0b4f52345d4bf40d43e239cef7ef43e7691
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/trace.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/trace.cc b/src/base/trace.cc index 7afb038be..2dde1f688 100644 --- a/src/base/trace.cc +++ b/src/base/trace.cc @@ -47,7 +47,7 @@ using namespace std; namespace Trace { const string DefaultName("global"); FlagVec flags(NumFlags, false); -bool enabled = true; +bool enabled = false; // // This variable holds the output stream for debug information. Other |