##// END OF EJS Templates
worker: ignore meaningless exit status indication returned by os.waitpid()...
FUJIWARA Katsunori -
r31063:18fb3cf5 stable
parent child Browse files
Show More
@@ -120,9 +120,12 b' def _posixworker(ui, func, staticargs, a'
120 break
120 break
121 else:
121 else:
122 raise
122 raise
123 if p:
123 if not p:
124 pids.discard(p)
124 # skip subsequent steps, because child process should
125 st = _exitstatus(st)
125 # be still running in this case
126 continue
127 pids.discard(p)
128 st = _exitstatus(st)
126 if st and not problem[0]:
129 if st and not problem[0]:
127 problem[0] = st
130 problem[0] = st
128 def sigchldhandler(signum, frame):
131 def sigchldhandler(signum, frame):
General Comments 0
You need to be logged in to leave comments. Login now