summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-04-06 16:58:40 -0400
committerNathan Binkert <binkertn@umich.edu>2005-04-06 16:58:40 -0400
commitc82562c7404287e22c4e83c45fa563fba0a14b0a (patch)
tree9f2c00e9eb7057ab0d6f2d42f582cec9687174f9 /sim
parent225730378e8ff70812357bb97ae3f9ef825ae4fe (diff)
downloadgem5-c82562c7404287e22c4e83c45fa563fba0a14b0a.tar.xz
full_system isn't a useful parameter anymore, get rid of it.
python/m5/objects/Root.mpy: sim/universe.cc: util/stats/stats.py: full_system isn't a useful parameter --HG-- extra : convert_revision : 557091be1faa3cf121c55102aba4e6f4c1bd45ef
Diffstat (limited to 'sim')
-rw-r--r--sim/universe.cc12
1 files changed, 0 insertions, 12 deletions
diff --git a/sim/universe.cc b/sim/universe.cc
index 8419e1fe4..5ae41eefd 100644
--- a/sim/universe.cc
+++ b/sim/universe.cc
@@ -42,7 +42,6 @@
using namespace std;
Tick curTick = 0;
-bool fullSystem;
ostream *outputStream;
ostream *configStream;
@@ -86,7 +85,6 @@ class Root : public SimObject
BEGIN_DECLARE_SIM_OBJECT_PARAMS(Root)
- Param<bool> full_system;
Param<Tick> frequency;
Param<string> output_file;
@@ -94,7 +92,6 @@ END_DECLARE_SIM_OBJECT_PARAMS(Root)
BEGIN_INIT_SIM_OBJECT_PARAMS(Root)
- INIT_PARAM(full_system, "full system simulation"),
INIT_PARAM(frequency, "tick frequency"),
INIT_PARAM(output_file, "file to dump simulator output to")
@@ -107,15 +104,6 @@ CREATE_SIM_OBJECT(Root)
panic("only one root object allowed!");
created = true;
- fullSystem = full_system;
-
-#ifdef FULL_SYSTEM
- if (!fullSystem)
- panic("FULL_SYSTEM compiled and configuration not full_system");
-#else
- if (fullSystem)
- panic("FULL_SYSTEM not compiled but configuration is full_system");
-#endif
outputStream = simout.find(output_file);
Root *root = new Root(getInstanceName());