diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2005-06-01 21:59:27 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2005-06-01 21:59:27 -0400 |
commit | 62fa781fee9ae93432e81902d73a35a83dbde642 (patch) | |
tree | 9cf01f352ac2bf102f1a64325c51be3132a77418 /sim | |
parent | 8031cd93b53cd3fe17a5a5f21e8e8bd833398e97 (diff) | |
download | gem5-62fa781fee9ae93432e81902d73a35a83dbde642.tar.xz |
Rename sim/universe.{cc,hh} to root.{cc,hh} (since the
object defined there was renamed Root long ago).
SConscript:
arch/alpha/alpha_linux_process.cc:
arch/alpha/alpha_tru64_process.cc:
base/misc.cc:
base/pollevent.cc:
base/pollevent.hh:
base/stats/events.cc:
base/trace.hh:
cpu/beta_cpu/fetch_impl.hh:
cpu/beta_cpu/full_cpu.cc:
cpu/beta_cpu/inst_queue_impl.hh:
cpu/pc_event.cc:
cpu/static_inst.cc:
dev/etherbus.cc:
dev/etherdump.cc:
dev/etherlink.cc:
dev/ide_disk.cc:
dev/pcidev.cc:
sim/builder.cc:
sim/eventq.cc:
sim/main.cc:
sim/root.cc:
sim/stat_control.cc:
Rename sim/universe.{cc,hh} to root.{cc,hh}.
--HG--
rename : sim/universe.cc => sim/root.cc
extra : convert_revision : b8699e81e285253d66da75412e7bb2c251c0389a
Diffstat (limited to 'sim')
-rw-r--r-- | sim/builder.cc | 2 | ||||
-rw-r--r-- | sim/eventq.cc | 2 | ||||
-rw-r--r-- | sim/main.cc | 2 | ||||
-rw-r--r-- | sim/root.cc (renamed from sim/universe.cc) | 2 | ||||
-rw-r--r-- | sim/stat_control.cc | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/sim/builder.cc b/sim/builder.cc index 011694797..4362a66fd 100644 --- a/sim/builder.cc +++ b/sim/builder.cc @@ -35,7 +35,7 @@ #include "sim/config_node.hh" #include "sim/host.hh" #include "sim/sim_object.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/sim/eventq.cc b/sim/eventq.cc index f975c5e97..50158d06f 100644 --- a/sim/eventq.cc +++ b/sim/eventq.cc @@ -38,7 +38,7 @@ #include "sim/eventq.hh" #include "base/trace.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/sim/main.cc b/sim/main.cc index ee59cb83b..94928e36a 100644 --- a/sim/main.cc +++ b/sim/main.cc @@ -61,7 +61,7 @@ #include "sim/sim_object.hh" #include "sim/stat_control.hh" #include "sim/stats.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/sim/universe.cc b/sim/root.cc index 981a8ebae..47c6a6ad4 100644 --- a/sim/universe.cc +++ b/sim/root.cc @@ -37,7 +37,7 @@ #include "sim/builder.hh" #include "sim/host.hh" #include "sim/sim_object.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/sim/stat_control.cc b/sim/stat_control.cc index 4d72ce213..37664dc65 100644 --- a/sim/stat_control.cc +++ b/sim/stat_control.cc @@ -43,7 +43,7 @@ #include "sim/eventq.hh" #include "sim/sim_object.hh" #include "sim/stat_control.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; |