diff options
author | Tom Tromey <tromey@redhat.com> | 2011-03-10 18:33:59 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2011-03-10 18:33:59 +0000 |
commit | 197f0a605dde6bdc173692d9a8272940263ac108 (patch) | |
tree | 643b953d725128e11acd5e0c741576ed4bb7dbcc /gdb/thread.c | |
parent | 5652b4915ceb5be161b5735d68ff7909a33a7db3 (diff) | |
download | binutils-197f0a605dde6bdc173692d9a8272940263ac108.zip binutils-197f0a605dde6bdc173692d9a8272940263ac108.tar.gz binutils-197f0a605dde6bdc173692d9a8272940263ac108.tar.bz2 |
* tracepoint.c (trace_actions_command): Update.
* thread.c (thread_apply_command): Update.
* reverse.c (delete_bookmark_command): Update.
(bookmarks_info): Update.
* printcmd.c (undisplay_command): Update.
* memattr.c (mem_enable_command): Update.
(mem_disable_command): Update.
(mem_delete_command): Update.
* inferior.c (detach_inferior_command): Update.
(kill_inferior_command): Update.
(remove_inferior_command): Update.
* cli/cli-utils.h (struct get_number_or_range_state): New.
(init_number_or_range): Declare.
(get_number_or_range): Update.
* cli/cli-utils.c (init_number_or_range): New function.
(get_number_or_range): Change 'pp' parameter to 'state'. Remove
static variables.
(number_is_in_list): Update.
* breakpoint.h (get_tracepoint_by_number): Update.
* breakpoint.c (map_breakpoint_numbers): Update for change to
get_number_or_range.
(find_location_by_number): Use get_number, not
get_number_or_range.
(trace_pass_set_count): New function.
(trace_pass_command): Update for change to get_number_or_range.
Rework loop logic.
(get_tracepoint_by_number): Remove 'multi_p' parameter; add
'state' parameter.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index b48909f..6ad1807 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -1214,6 +1214,7 @@ thread_apply_command (char *tidlist, int from_tty) char *cmd; struct cleanup *old_chain; char *saved_cmd; + struct get_number_or_range_state state; if (tidlist == NULL || *tidlist == '\000') error (_("Please specify a thread ID list")); @@ -1227,13 +1228,15 @@ thread_apply_command (char *tidlist, int from_tty) execute_command. */ saved_cmd = xstrdup (cmd); old_chain = make_cleanup (xfree, saved_cmd); - while (tidlist < cmd) + + init_number_or_range (&state, tidlist); + while (!state.finished && state.string < cmd) { struct thread_info *tp; int start; char *p = tidlist; - start = get_number_or_range (&tidlist); + start = get_number_or_range (&state); make_cleanup_restore_current_thread (); |