summaryrefslogtreecommitdiff
path: root/src/mem/cache/coherence/CoherenceProtocol.py
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2007-06-27 20:54:13 -0700
committerSteve Reinhardt <stever@eecs.umich.edu>2007-06-27 20:54:13 -0700
commit9117c94f9c74f0674d75731385a106d17a1dee09 (patch)
treeda101a10810e144d8203ef1e65b384ba76dde629 /src/mem/cache/coherence/CoherenceProtocol.py
parentc4903e088247ad187356864459d2e4be77d97154 (diff)
downloadgem5-9117c94f9c74f0674d75731385a106d17a1dee09.tar.xz
Get rid of coherence protocol object.
--HG-- extra : convert_revision : 4ff144342dca23af9a12a2169ca318a002654b42
Diffstat (limited to 'src/mem/cache/coherence/CoherenceProtocol.py')
-rw-r--r--src/mem/cache/coherence/CoherenceProtocol.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mem/cache/coherence/CoherenceProtocol.py b/src/mem/cache/coherence/CoherenceProtocol.py
deleted file mode 100644
index 82adb6862..000000000
--- a/src/mem/cache/coherence/CoherenceProtocol.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from m5.SimObject import SimObject
-from m5.params import *
-class Coherence(Enum): vals = ['uni', 'msi', 'mesi', 'mosi', 'moesi']
-
-class CoherenceProtocol(SimObject):
- type = 'CoherenceProtocol'
- do_upgrades = Param.Bool(True, "use upgrade transactions?")
- protocol = Param.Coherence("name of coherence protocol")