diff options
author | Michael Snyder <msnyder@specifix.com> | 2011-02-19 01:24:54 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@specifix.com> | 2011-02-19 01:24:54 +0000 |
commit | b0ee80ffd78aaf4e8ab72de38bc5c98dcabaa78c (patch) | |
tree | 9dd490eac0fb8ef8915304a2cddae533161fd077 /gdb | |
parent | d62706551da523c98e6936b77f84255d307afd9a (diff) | |
download | gdb-b0ee80ffd78aaf4e8ab72de38bc5c98dcabaa78c.tar.gz |
2011-02-18 Michael Snyder <msnyder@vmware.com>
* thread.c (thread_apply_command): Re-implement using
get_number_or_range.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 1 | ||||
-rw-r--r-- | gdb/thread.c | 55 |
2 files changed, 17 insertions, 39 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3cae1d33a29..eb0dd86aecf 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -2,6 +2,7 @@ * thread.c (info_threads_command): Re-implement using get_number_or_range. + (thread_apply_command): Ditto. 2011-02-18 Tom Tromey <tromey@redhat.com> diff --git a/gdb/thread.c b/gdb/thread.c index e297b54e24b..a8d7adfe0b4 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -1212,7 +1212,6 @@ static void thread_apply_command (char *tidlist, int from_tty) { char *cmd; - char *p; struct cleanup *old_chain; char *saved_cmd; @@ -1231,51 +1230,29 @@ thread_apply_command (char *tidlist, int from_tty) while (tidlist < cmd) { struct thread_info *tp; - int start, end; + int start; + char *p = tidlist; - start = strtol (tidlist, &p, 10); - if (p == tidlist) - error (_("Error parsing %s"), tidlist); - tidlist = p; - - while (*tidlist == ' ' || *tidlist == '\t') - tidlist++; - - if (*tidlist == '-') /* Got a range of IDs? */ - { - tidlist++; /* Skip the - */ - end = strtol (tidlist, &p, 10); - if (p == tidlist) - error (_("Error parsing %s"), tidlist); - tidlist = p; - - while (*tidlist == ' ' || *tidlist == '\t') - tidlist++; - } - else - end = start; + start = get_number_or_range (&tidlist); make_cleanup_restore_current_thread (); - for (; start <= end; start++) - { - tp = find_thread_id (start); + tp = find_thread_id (start); - if (!tp) - warning (_("Unknown thread %d."), start); - else if (!thread_alive (tp)) - warning (_("Thread %d has terminated."), start); - else - { - switch_to_thread (tp->ptid); + if (!tp) + warning (_("Unknown thread %d."), start); + else if (!thread_alive (tp)) + warning (_("Thread %d has terminated."), start); + else + { + switch_to_thread (tp->ptid); - printf_filtered (_("\nThread %d (%s):\n"), tp->num, - target_pid_to_str (inferior_ptid)); - execute_command (cmd, from_tty); + printf_filtered (_("\nThread %d (%s):\n"), tp->num, + target_pid_to_str (inferior_ptid)); + execute_command (cmd, from_tty); - /* Restore exact command used previously. */ - strcpy (cmd, saved_cmd); - } + /* Restore exact command used previously. */ + strcpy (cmd, saved_cmd); } } |