Implement current working directory for LiveProcesses

--HG--
extra : convert_revision : a2d3cf29ab65c61af27d82a8c421a41a19fd5aeb
This commit is contained in:
Nathan Binkert
2006-11-16 12:43:11 -08:00
parent dbdf2f14ae
commit 31d829d388
21 changed files with 88 additions and 15 deletions

View File

@@ -12,6 +12,7 @@ class LiveProcess(Process):
executable = Param.String('', "executable (overrides cmd[0] if set)")
cmd = VectorParam.String("command line (executable plus arguments)")
env = VectorParam.String('', "environment settings")
cwd = Param.String('', "current working directory")
input = Param.String('cin', "filename for stdin")
uid = Param.Int(100, 'user id')
euid = Param.Int(100, 'effective user id')