93e60de656
stay fixed even if the path to the binary changes, so the simulation results are independent of that path. --HG-- extra : convert_revision : d1109cd284466c14eddc97289908a51e771fc5db
17 lines
627 B
Python
17 lines
627 B
Python
from m5 import *
|
|
class Process(SimObject):
|
|
type = 'Process'
|
|
abstract = True
|
|
output = Param.String('cout', 'filename for stdout/stderr')
|
|
|
|
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 EioProcess(Process):
|
|
type = 'EioProcess'
|
|
chkpt = Param.String('', "EIO checkpoint file name (optional)")
|
|
file = Param.String("EIO trace file name")
|