(self)
| 2446 | new_pydb_command_thread.start() |
| 2447 | |
| 2448 | def _create_check_output_thread(self): |
| 2449 | curr_output_checker_thread = self.check_alive_thread |
| 2450 | if curr_output_checker_thread is not None: |
| 2451 | curr_output_checker_thread.do_kill_pydev_thread() |
| 2452 | |
| 2453 | check_alive_thread = self.check_alive_thread = CheckAliveThread(self) |
| 2454 | check_alive_thread.start() |
| 2455 | |
| 2456 | def start_auxiliary_daemon_threads(self): |
| 2457 | self._create_pydb_command_thread() |
no test coverage detected