diff options
Diffstat (limited to 'python/m5/objects/Process.py')
-rw-r--r-- | python/m5/objects/Process.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/python/m5/objects/Process.py b/python/m5/objects/Process.py deleted file mode 100644 index 60b00229e..000000000 --- a/python/m5/objects/Process.py +++ /dev/null @@ -1,27 +0,0 @@ -from m5 import * -class Process(SimObject): - type = 'Process' - abstract = True - output = Param.String('cout', 'filename for stdout/stderr') - system = Param.System(Parent.any, "system process will run on") - -class LiveProcess(Process): - type = 'LiveProcess' - executable = Param.String('', "executable (overrides cmd[0] if set)") - cmd = VectorParam.String("command line (executable plus arguments)") - 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)") - file = Param.String("EIO trace file name") |