(thread, set_additional_thread_info)
| 51 | |
| 52 | |
| 53 | def internal_run_thread(thread, set_additional_thread_info): |
| 54 | info = set_additional_thread_info(thread) |
| 55 | info.pydev_original_step_cmd = -1 |
| 56 | info.pydev_step_cmd = -1 |
| 57 | info.pydev_step_stop = None |
| 58 | info.pydev_state = STATE_RUN |
| 59 | info.update_stepping_info() |
| 60 | |
| 61 | |
| 62 | def resume_threads(thread_id, except_thread=None): |
no test coverage detected