diff options
author | Kevin Lim <ktlim@umich.edu> | 2005-03-15 15:13:24 -0500 |
---|---|---|
committer | Kevin Lim <ktlim@umich.edu> | 2005-03-15 15:13:24 -0500 |
commit | 3833533a64e5a6871ee8e1901c6dd1950d3966c4 (patch) | |
tree | 8fb8d2db0d6a1925734cf703e67a1953645f6599 /cpu | |
parent | efdab1748f249e1d8e042f4ca29c6e247a32ff90 (diff) | |
parent | aa8ebb9efa8fa8bde55aa330860018139ccdf6f6 (diff) | |
download | gem5-3833533a64e5a6871ee8e1901c6dd1950d3966c4.tar.xz |
Merge ktlim@zizzer.eecs.umich.edu:/bk/m5
into zamp.eecs.umich.edu:/z/ktlim2/m5
--HG--
extra : convert_revision : 1391d03656a1d75809217c5b2e2aecca6f8a04ba
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/base_cpu.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpu/base_cpu.cc b/cpu/base_cpu.cc index 8feb362fb..01040015c 100644 --- a/cpu/base_cpu.cc +++ b/cpu/base_cpu.cc @@ -207,8 +207,7 @@ BaseCPU::registerExecContexts() void BaseCPU::switchOut(SamplingCPU *sampler) { - // default: do nothing, signal done - sampler->signalSwitched(); + panic("This CPU doesn't support sampling!"); } void |