diff options
Diffstat (limited to 'gdb/solib-osf.c')
-rw-r--r-- | gdb/solib-osf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/solib-osf.c b/gdb/solib-osf.c index 809114c..e2bb38d 100644 --- a/gdb/solib-osf.c +++ b/gdb/solib-osf.c @@ -342,13 +342,13 @@ osf_solib_create_inferior_hook (int from_tty) tp = inferior_thread (); clear_proceed_status (); inf->control.stop_soon = STOP_QUIETLY; - tp->suspend.stop_signal = TARGET_SIGNAL_0; + tp->suspend.stop_signal = GDB_SIGNAL_0; do { target_resume (minus_one_ptid, 0, tp->suspend.stop_signal); wait_for_inferior (); } - while (tp->suspend.stop_signal != TARGET_SIGNAL_TRAP); + while (tp->suspend.stop_signal != GDB_SIGNAL_TRAP); /* solib_add will call reinit_frame_cache. But we are stopped in the runtime loader and we do not have symbols |