summaryrefslogtreecommitdiff
path: root/src/mem/cache/base.hh
diff options
context:
space:
mode:
authorAnthony Gutierrez <atgutier@umich.edu>2013-01-28 20:19:42 -0500
committerAnthony Gutierrez <atgutier@umich.edu>2013-01-28 20:19:42 -0500
commitaf0f8b31dbbc105c1a07d94265824cee4bda0c55 (patch)
tree5b9f39aa91470e9ecf38f4fe4506eb583cceef36 /src/mem/cache/base.hh
parent25c3e734187c9be14f748864678b808b3c1b118b (diff)
downloadgem5-af0f8b31dbbc105c1a07d94265824cee4bda0c55.tar.xz
cache: remove drainManager because it's not used
the cache drainManager is set but never cleared, this is because the cache itself does not need to be drained and thus never triggers a signalDrainDone(). because the drainManager variable is not used properly and does not appear to be necessary it has been removed with this patch.
Diffstat (limited to 'src/mem/cache/base.hh')
-rw-r--r--src/mem/cache/base.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mem/cache/base.hh b/src/mem/cache/base.hh
index e8adacfa1..b9b42da78 100644
--- a/src/mem/cache/base.hh
+++ b/src/mem/cache/base.hh
@@ -287,9 +287,6 @@ class BaseCache : public MemObject
/** The number of misses to trigger an exit event. */
Counter missCount;
- /** The drain event. */
- DrainManager *drainManager;
-
/**
* The address range to which the cache responds on the CPU side.
* Normally this is all possible memory addresses. */