Wait until parent process terminates
(self, timeout=None)
| 379 | return self._pid |
| 380 | |
| 381 | def join(self, timeout=None): |
| 382 | ''' |
| 383 | Wait until parent process terminates |
| 384 | ''' |
| 385 | from multiprocessing.connection import wait |
| 386 | wait([self._sentinel], timeout=timeout) |
| 387 | |
| 388 | pid = ident |
| 389 |