mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
* remote-utils.c (prepare_resume_reply): Move declaration
of gdb_id_from_wait to the top of the block.
This commit is contained in:
parent
4f471f3957
commit
b92a518e73
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user