Wait for the process to exit.
(self)
| 504 | return self._proc.pid |
| 505 | |
| 506 | def join(self): |
| 507 | """Wait for the process to exit.""" |
| 508 | if self.daemonize: |
| 509 | return self._join_daemon() |
| 510 | self._proc.wait() |
| 511 | |
| 512 | def _join_daemon(self): |
| 513 | with contextlib.suppress(IOError): |