Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(518)

Unified Diff: gdb/solib-osf.c

Issue 11969036: Merge GDB 7.5.1 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@master
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/solib-irix.c ('k') | gdb/solib-pa64.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/solib-osf.c
diff --git a/gdb/solib-osf.c b/gdb/solib-osf.c
index 809114cc300ace4d2763f93ac183dac953129585..e2bb38d6185da8b77b766dc9bb529163ef73893b 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
« no previous file with comments | « gdb/solib-irix.c ('k') | gdb/solib-pa64.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698