def __start(self):
"do work of starting the process"
self.statusPipe = _StatusPipe()
self.started = True # do first to prevent restarts on error
self.pid = os.fork()
if self.pid == 0:
try:
self.__childStart()
finally:
os.abort() # should never make it here
else:
self.__parentStart()
pipeline.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录