diff options
Diffstat (limited to 'gdb/solib-svr4.c')
-rw-r--r-- | gdb/solib-svr4.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/solib-svr4.c b/gdb/solib-svr4.c index db21360..5106552 100644 --- a/gdb/solib-svr4.c +++ b/gdb/solib-svr4.c @@ -2188,15 +2188,15 @@ svr4_solib_create_inferior_hook (int from_tty) tp = inferior_thread (); clear_proceed_status (); - inf->stop_soon = STOP_QUIETLY; - tp->stop_signal = TARGET_SIGNAL_0; + inf->control.stop_soon = STOP_QUIETLY; + tp->suspend.stop_signal = TARGET_SIGNAL_0; do { - target_resume (pid_to_ptid (-1), 0, tp->stop_signal); + target_resume (pid_to_ptid (-1), 0, tp->suspend.stop_signal); wait_for_inferior (0); } - while (tp->stop_signal != TARGET_SIGNAL_TRAP); - inf->stop_soon = NO_STOP_QUIETLY; + while (tp->suspend.stop_signal != TARGET_SIGNAL_TRAP); + inf->control.stop_soon = NO_STOP_QUIETLY; #endif /* defined(_SCO_DS) */ } |