[GDBserver] Fix SH/Linux build.

sh-linux-gnu-gcc (...) src/gdb/gdbserver/linux-low.c
 .../src/gdb/gdbserver/linux-low.c: In function 'linux_read_loadmap':
 .../src/gdb/gdbserver/linux-low.c:5284:13: error: 'struct lwp_info' has no member named 'entry'
 make[1]: *** [linux-low.o] Error 1

gdb/gdbserver/
2014-04-09  Pedro Alves  <palves@redhat.com>

	* linux-low.c (linux_read_loadmap): Pass current_inferior directly
	to lwpid_of.
This commit is contained in:
Pedro Alves 2014-04-09 15:01:33 +01:00
parent 00c06fdc57
commit 2eec7d5ba1
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-04-09 Pedro Alves <palves@redhat.com>
* linux-low.c (linux_read_loadmap): Pass current_inferior directly
to lwpid_of.
2014-02-27 Pedro Alves <palves@redhat.com>
PR 12702

View File

@ -5272,7 +5272,7 @@ static int
linux_read_loadmap (const char *annex, CORE_ADDR offset,
unsigned char *myaddr, unsigned int len)
{
int pid = lwpid_of (get_thread_lwp (current_inferior));
int pid = lwpid_of (current_inferior);
int addr = -1;
struct target_loadmap *data = NULL;
unsigned int actual_length, copy_length;