diff options
author | Andrew Cagney <cagney@redhat.com> | 2004-04-28 16:36:25 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2004-04-28 16:36:25 +0000 |
commit | 0faf007628341c5afd2d3721c84e46d27ff6d3e0 (patch) | |
tree | 0d0c60340431c1f9786ac954dbb4303f2859fbf8 /gdb/thread.c | |
parent | 5d38b224def119ade197afdee5a072891a177e8a (diff) | |
download | gdb-0faf007628341c5afd2d3721c84e46d27ff6d3e0.zip gdb-0faf007628341c5afd2d3721c84e46d27ff6d3e0.tar.gz gdb-0faf007628341c5afd2d3721c84e46d27ff6d3e0.tar.bz2 |
2004-04-28 Andrew Cagney <cagney@redhat.com>
* stack.c (print_stack_frame_stub): Delete declaration.
(struct print_stack_frame_args, print_stack_frame)
(print_frame_info, print_frame): Replace "source" with print what.
Replace "print" with "print_level". Replace "args" with
"print_args".
* frame.h (show_and_print_stack_frame, print_stack_frame)
(print_frame_info): Update declarations.
* stack.c (select_and_print_frame, frame_command)
(current_frame_command, up_command, down_command): Update calls -
use get_selected_frame, pass "enum print_what" for source, do not
call frame_relative_level.
* mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
* remote-rdp.c (remote_rdp_open): Ditto.
* remote-mips.c (common_open): Ditto.
* remote-e7000.c (e7000_start_remote): Ditto.
* ocd.c (ocd_start_remote): Ditto.
* mi/mi-main.c (mi_cmd_exec_return): Ditto.
* infrun.c (normal_stop): Ditto.
* inflow.c (kill_command): Ditto.
* infcmd.c (finish_command): Ditto.
* corelow.c (core_open): Ditto.
* tracepoint.c (finish_tfind_command): Ditto.
* thread.c (info_threads_command, info_threads_command)
(restore_current_thread, do_captured_thread_select): Ditto.
* ada-tasks.c (task_command): Ditto.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index f8cc18d..b8a7f8b 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -448,7 +448,7 @@ info_threads_command (char *arg, int from_tty) puts_filtered (" "); switch_to_thread (tp->ptid); - print_stack_frame (get_selected_frame (), -1, 0); + print_stack_frame (get_selected_frame (), 0, LOCATION); } switch_to_thread (current_ptid); @@ -465,7 +465,7 @@ info_threads_command (char *arg, int from_tty) { /* Ooops, can't restore, tell user where we are. */ warning ("Couldn't restore frame in current thread, at frame 0"); - print_stack_frame (get_selected_frame (), -1, 0); + print_stack_frame (get_selected_frame (), 0, LOCATION); } else { @@ -497,7 +497,7 @@ restore_current_thread (ptid_t ptid) if (!ptid_equal (ptid, inferior_ptid)) { switch_to_thread (ptid); - print_stack_frame (get_current_frame (), 0, -1); + print_stack_frame (get_current_frame (), 1, SRC_LINE); } } @@ -704,8 +704,7 @@ do_captured_thread_select (struct ui_out *uiout, void *tidstr) #endif ui_out_text (uiout, ")]"); - print_stack_frame (deprecated_selected_frame, - frame_relative_level (deprecated_selected_frame), 1); + print_stack_frame (get_selected_frame (), 1, SRC_AND_LOC); return GDB_RC_OK; } |