summaryrefslogtreecommitdiff
path: root/python/m5/objects/Process.py
diff options
context:
space:
mode:
authorKorey Sewell <ksewell@umich.edu>2006-03-15 23:38:55 -0500
committerKorey Sewell <ksewell@umich.edu>2006-03-15 23:38:55 -0500
commit77a2f97c3590d7d51ffc5b447546c7c70894bdbd (patch)
tree3463e457b10da0cea34cf20e914b2b51dc329d28 /python/m5/objects/Process.py
parente2b558112b408847a1423e5dd12db59e81260c84 (diff)
parent7359e2df01fde9ea34a0ba661750a455e26bcacd (diff)
downloadgem5-77a2f97c3590d7d51ffc5b447546c7c70894bdbd.tar.xz
Merge zizzer:/bk/newmem
into zazzer.eecs.umich.edu:/.automount/zooks/y/ksewell/research/m5-sim/newmem-mips --HG-- extra : convert_revision : 9bdde9b5bd3049744451eda1134f080b7c4b1b59
Diffstat (limited to 'python/m5/objects/Process.py')
-rw-r--r--python/m5/objects/Process.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/python/m5/objects/Process.py b/python/m5/objects/Process.py
index def70dbaa..60b00229e 100644
--- a/python/m5/objects/Process.py
+++ b/python/m5/objects/Process.py
@@ -12,6 +12,15 @@ class LiveProcess(Process):
env = VectorParam.String('', "environment settings")
input = Param.String('cin', "filename for stdin")
+class AlphaLiveProcess(LiveProcess):
+ type = 'AlphaLiveProcess'
+
+class SparcLiveProcess(LiveProcess):
+ type = 'SparcLiveProcess'
+
+class MipsLiveProcess(LiveProcess):
+ type = 'MipsLiveProcess'
+
class EioProcess(Process):
type = 'EioProcess'
chkpt = Param.String('', "EIO checkpoint file name (optional)")