From: Randolph Chung Date: Tue, 25 May 2004 03:59:29 +0000 (+0000) Subject: 2004-05-24 Randolph Chung X-Git-Tag: gprof-pre-ansify-2004-05-26~15 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=007d08bb900a8baf152b4306e195ee20dff52e0c;p=platform%2Fupstream%2Fbinutils.git 2004-05-24 Randolph Chung * thread.c (info_threads_command, thread_apply_all_command) (thread_apply_command, thread_command, do_captured_thread_select): Remove HPUXHPPA-specific code. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 856a750..e78161d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,11 @@ 2004-05-24 Randolph Chung + * thread.c (info_threads_command, thread_apply_all_command) + (thread_apply_command, thread_command, do_captured_thread_select): + Remove HPUXHPPA-specific code. + +2004-05-24 Randolph Chung + * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove unused symbols. * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more diff --git a/gdb/thread.c b/gdb/thread.c index 7a5927d..1664592 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -424,11 +424,7 @@ info_threads_command (char *arg, int from_tty) else printf_filtered (" "); -#ifdef HPUXHPPA printf_filtered ("%d %s", tp->num, target_tid_to_str (tp->ptid)); -#else - printf_filtered ("%d %s", tp->num, target_pid_to_str (tp->ptid)); -#endif extra_info = target_extra_thread_info (tp); if (extra_info) @@ -541,13 +537,8 @@ thread_apply_all_command (char *cmd, int from_tty) if (thread_alive (tp)) { switch_to_thread (tp->ptid); -#ifdef HPUXHPPA printf_filtered ("\nThread %d (%s):\n", tp->num, target_tid_to_str (inferior_ptid)); -#else - printf_filtered ("\nThread %d (%s):\n", tp->num, - target_pid_to_str (inferior_ptid)); -#endif execute_command (cmd, from_tty); strcpy (cmd, saved_cmd); /* Restore exact command used previously */ } @@ -617,13 +608,8 @@ thread_apply_command (char *tidlist, int from_tty) else { switch_to_thread (tp->ptid); -#ifdef HPUXHPPA printf_filtered ("\nThread %d (%s):\n", tp->num, target_tid_to_str (inferior_ptid)); -#else - printf_filtered ("\nThread %d (%s):\n", tp->num, - target_pid_to_str (inferior_ptid)); -#endif execute_command (cmd, from_tty); strcpy (cmd, saved_cmd); /* Restore exact command used previously */ } @@ -646,12 +632,7 @@ thread_command (char *tidstr, int from_tty) if (target_has_stack) printf_filtered ("[Current thread is %d (%s)]\n", pid_to_thread_id (inferior_ptid), -#if defined(HPUXHPPA) - target_tid_to_str (inferior_ptid) -#else - target_pid_to_str (inferior_ptid) -#endif - ); + target_tid_to_str (inferior_ptid)); else error ("No stack."); return; @@ -681,11 +662,7 @@ do_captured_thread_select (struct ui_out *uiout, void *tidstr) ui_out_text (uiout, "[Switching to thread "); ui_out_field_int (uiout, "new-thread-id", pid_to_thread_id (inferior_ptid)); ui_out_text (uiout, " ("); -#if defined(HPUXHPPA) ui_out_text (uiout, target_tid_to_str (inferior_ptid)); -#else - ui_out_text (uiout, target_pid_to_str (inferior_ptid)); -#endif ui_out_text (uiout, ")]"); print_stack_frame (get_selected_frame (), 1, SRC_AND_LOC);