Home | History | Annotate | Download | only in gdb

Lines Matching defs:inf_status

10303   infcall_control_state_up inf_status (new struct infcall_control_state);
10307 inf_status->thread_control = tp->control;
10308 inf_status->inferior_control = inf->control;
10313 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
10320 inf_status->stop_stack_dummy = stop_stack_dummy;
10321 inf_status->stopped_by_random_signal = stopped_by_random_signal;
10323 save_selected_frame (&inf_status->selected_frame_id,
10324 &inf_status->selected_frame_level);
10326 return inf_status;
10329 /* Restore inferior session state to INF_STATUS. */
10332 restore_infcall_control_state (struct infcall_control_state *inf_status)
10347 tp->control = inf_status->thread_control;
10348 inf->control = inf_status->inferior_control;
10351 stop_stack_dummy = inf_status->stop_stack_dummy;
10352 stopped_by_random_signal = inf_status->stopped_by_random_signal;
10356 restore_selected_frame (inf_status->selected_frame_id,
10357 inf_status->selected_frame_level);
10360 delete inf_status;
10364 discard_infcall_control_state (struct infcall_control_state *inf_status)
10366 if (inf_status->thread_control.step_resume_breakpoint)
10367 inf_status->thread_control.step_resume_breakpoint->disposition
10370 if (inf_status->thread_control.exception_resume_breakpoint)
10371 inf_status->thread_control.exception_resume_breakpoint->disposition
10375 bpstat_clear (&inf_status->thread_control.stop_bpstat);
10377 delete inf_status;