Sends that some thread was resumed and is no longer showing an exception trace.
(self, thread)
| 2018 | self.post_internal_command(int_cmd, thread_id) |
| 2019 | |
| 2020 | def send_caught_exception_stack_proceeded(self, thread): |
| 2021 | """Sends that some thread was resumed and is no longer showing an exception trace.""" |
| 2022 | thread_id = get_thread_id(thread) |
| 2023 | int_cmd = InternalSendCurrExceptionTraceProceeded(thread_id) |
| 2024 | self.post_internal_command(int_cmd, thread_id) |
| 2025 | self.process_internal_commands() |
| 2026 | |
| 2027 | def send_process_created_message(self): |
| 2028 | """Sends a message that a new process has been created.""" |
no test coverage detected