summaryrefslogtreecommitdiff
path: root/src/mem/cache/coherence/CoherenceProtocol.py
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2007-07-15 23:22:04 -0400
committerSteve Reinhardt <stever@eecs.umich.edu>2007-07-15 23:22:04 -0400
commitd5bb145590a16165c362c6157801b7fbab4a0486 (patch)
treedaae998c411bace2532ca75f452c768cf306142c /src/mem/cache/coherence/CoherenceProtocol.py
parent658eeee50715d9fd334ae3fd3e0e21b6db6de0c4 (diff)
parent884807a68ad7e4f390660b3becfe4ee094334e95 (diff)
downloadgem5-d5bb145590a16165c362c6157801b7fbab4a0486.tar.xz
Merge from head.
--HG-- extra : convert_revision : c5d045208e521f0bc9e47484a380917e27066798
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")