summaryrefslogtreecommitdiff
path: root/objects/Process.mpy
diff options
context:
space:
mode:
Diffstat (limited to 'objects/Process.mpy')
-rw-r--r--objects/Process.mpy15
1 files changed, 0 insertions, 15 deletions
diff --git a/objects/Process.mpy b/objects/Process.mpy
deleted file mode 100644
index 6a91c09c2..000000000
--- a/objects/Process.mpy
+++ /dev/null
@@ -1,15 +0,0 @@
-simobj Process(SimObject):
- type = 'Process'
- abstract = True
- output = Param.String('cout', 'filename for stdout/stderr')
-
-simobj LiveProcess(Process):
- type = 'LiveProcess'
- cmd = VectorParam.String("command line (executable plus arguments)")
- env = VectorParam.String('', "environment settings")
- input = Param.String('cin', "filename for stdin")
-
-simobj EioProcess(Process):
- type = 'EioProcess'
- chkpt = Param.String('', "EIO checkpoint file name (optional)")
- file = Param.String("EIO trace file name")