gdbserver: fix uClibc build whithout MMU.
authorRomain Naour <romain.naour@openwide.fr>
Tue, 14 Apr 2015 21:07:34 +0000 (23:07 +0200)
committerYao Qi <yao.qi@linaro.org>
Wed, 15 Apr 2015 15:59:47 +0000 (16:59 +0100)
Since commit d86d4aafd4fa22fa4cccb83253fb187b03f97f48, the pid
must be retrieved from current_thread.

The change has not been made in the function linux_read_offsets().

Fixes:
http://autobuild.buildroot.net/results/9e4/9e4df085319e346803c26c65478accb27eb950ae/build-end.log

2015-04-14  Romain Naour <romain.naour@openwide.fr>  (tiny change)

* linux-low.c (linux_read_offsets): Remove get_thread_lwp.

Signed-off-by: Romain Naour <romain.naour@openwide.fr>
gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c

index 332a5161ec7635aa8abc521bd87166f41ce3258e..165c42ca99755968ba533faf49bfbe439f75c4b2 100644 (file)
@@ -1,3 +1,7 @@
+2015-04-14  Romain Naour <romain.naour@openwide.fr>  (tiny change)
+
+       * linux-low.c (linux_read_offsets): Remove get_thread_lwp.
+
 2015-04-09  Gary Benson <gbenson@redhat.com>
 
        * hostio-errno.c (errno_to_fileio_error): Remove function.
index 6dd922477d0a0cf4dca718a01d78dc810a426fe4..a7f8446f7365cf4e94745c3fea449ed8c019a303 100644 (file)
@@ -5209,7 +5209,7 @@ static int
 linux_read_offsets (CORE_ADDR *text_p, CORE_ADDR *data_p)
 {
   unsigned long text, text_end, data;
-  int pid = lwpid_of (get_thread_lwp (current_thread));
+  int pid = lwpid_of (current_thread);
 
   errno = 0;
 
This page took 0.034338 seconds and 4 git commands to generate.