* remote-utils.c (prepare_resume_reply): Move declaration

of gdb_id_from_wait to the top of the block.
This commit is contained in:
Daniel Jacobowitz 2006-03-03 14:48:55 +00:00
parent 4f471f3957
commit b92a518e73
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
* remote-utils.c (prepare_resume_reply): Move declaration
of gdb_id_from_wait to the top of the block.
2006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
* linux-low.c (regsets_store_inferior_registers): Read the regset

View File

@ -681,9 +681,11 @@ prepare_resume_reply (char *buf, char status, unsigned char signo)
if (using_threads)
{
unsigned int gdb_id_from_wait;
/* FIXME right place to set this? */
thread_from_wait = ((struct inferior_list_entry *)current_inferior)->id;
unsigned int gdb_id_from_wait = thread_to_gdb_id (current_inferior);
gdb_id_from_wait = thread_to_gdb_id (current_inferior);
if (debug_threads)
fprintf (stderr, "Writing resume reply for %ld\n\n", thread_from_wait);