def command_step_out(self):
tid = read_int(self.conn)
thread = get_thread_from_id(tid)
if thread is not None:
assert thread._is_blocked
thread.stepping = STEPPING_OUT
self.command_resume_all()
文章目录