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 /base | |
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 'base')
-rw-r--r-- | base/misc.cc | 2 | ||||
-rw-r--r-- | base/pollevent.cc | 2 | ||||
-rw-r--r-- | base/pollevent.hh | 2 | ||||
-rw-r--r-- | base/stats/events.cc | 2 | ||||
-rw-r--r-- | base/trace.hh | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/base/misc.cc b/base/misc.cc index 4b7c3632a..41c9800df 100644 --- a/base/misc.cc +++ b/base/misc.cc @@ -35,7 +35,7 @@ #include "base/output.hh" #include "base/trace.hh" #include "sim/host.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/base/pollevent.cc b/base/pollevent.cc index 127bf57f5..132d7de70 100644 --- a/base/pollevent.cc +++ b/base/pollevent.cc @@ -37,7 +37,7 @@ #include "sim/host.hh" #include "base/misc.hh" #include "base/pollevent.hh" -#include "sim/universe.hh" +#include "sim/root.hh" #include "sim/serialize.hh" using namespace std; diff --git a/base/pollevent.hh b/base/pollevent.hh index 3c9404c08..169d82a61 100644 --- a/base/pollevent.hh +++ b/base/pollevent.hh @@ -31,7 +31,7 @@ #include <vector> #include <poll.h> -#include "sim/universe.hh" +#include "sim/root.hh" class Checkpoint; diff --git a/base/stats/events.cc b/base/stats/events.cc index d716fa4d3..dd7ec2ccf 100644 --- a/base/stats/events.cc +++ b/base/stats/events.cc @@ -41,7 +41,7 @@ #include "base/match.hh" #include "sim/host.hh" #include "sim/sim_object.hh" -#include "sim/universe.hh" +#include "sim/root.hh" using namespace std; diff --git a/base/trace.hh b/base/trace.hh index 054b14546..eb33213ed 100644 --- a/base/trace.hh +++ b/base/trace.hh @@ -34,7 +34,7 @@ #include "base/cprintf.hh" #include "base/match.hh" #include "sim/host.hh" -#include "sim/universe.hh" +#include "sim/root.hh" #ifndef TRACING_ON #ifndef NDEBUG |