mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-07-17 18:43:25 +08:00
* corelow.c (add_to_thread_list): Need a cast to go from PTR to
asection *.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
Sat Oct 16 20:47:30 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
Sat Oct 16 20:47:30 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
|
||||||
|
|
||||||
|
* corelow.c (add_to_thread_list): Need a cast to go from PTR to
|
||||||
|
asection *.
|
||||||
|
|
||||||
* infrun.c: Add comment about signals.
|
* infrun.c: Add comment about signals.
|
||||||
|
|
||||||
* fork-child.c (fork_inferior): Remove CREATE_INFERIOR_HOOK again.
|
* fork-child.c (fork_inferior): Remove CREATE_INFERIOR_HOOK again.
|
||||||
|
@ -90,7 +90,7 @@ add_to_thread_list (abfd, asect, reg_sect_arg)
|
|||||||
PTR reg_sect_arg;
|
PTR reg_sect_arg;
|
||||||
{
|
{
|
||||||
int thread_id;
|
int thread_id;
|
||||||
asection *reg_sect = reg_sect_arg;
|
asection *reg_sect = (asection *) reg_sect_arg;
|
||||||
|
|
||||||
if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0)
|
if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0)
|
||||||
return;
|
return;
|
||||||
|
Reference in New Issue
Block a user