(self, global_suspend_time)
| 411 | ) |
| 412 | |
| 413 | def _notify_after_timeout(self, global_suspend_time): |
| 414 | with self._lock: |
| 415 | if self._suspended_thread_id_to_thread: |
| 416 | if global_suspend_time > self._last_suspend_notification_time: |
| 417 | self._last_suspend_notification_time = global_suspend_time |
| 418 | # Notify about any thread which is currently suspended. |
| 419 | pydev_log.info("Sending suspend notification after timeout.") |
| 420 | thread_id, thread = next(iter(self._suspended_thread_id_to_thread.items())) |
| 421 | self.send_suspend_notification(thread_id, thread, CMD_THREAD_SUSPEND) |
| 422 | |
| 423 | def on_thread_suspend(self, thread_id, thread, stop_reason): |
| 424 | with self._lock: |
nothing calls this directly
no test coverage detected