patches/gdb/6.5/120-thread-timeout.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Jan 06 22:22:02 2009 +0000 (2009-01-06)
changeset 1130 78681fe5cdd1
parent 438 d75624a9268b
permissions -rw-r--r--
Update all samples to the latest set of config options.
There might be some small issues here and there due to the split of CT_ExtractAndPatch.

/trunk/samples/x86_64-unknown-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/sh4-unknown-linux-gnu/crosstool.config | 13 10 3 0 +++++++++---
/trunk/samples/armeb-unknown-linux-uclibc/crosstool.config | 10 7 3 0 ++++++---
/trunk/samples/arm-unknown-elf/crosstool.config | 8 4 4 0 +++---
/trunk/samples/arm-unknown-linux-gnueabi/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/armeb-unknown-eabi/crosstool.config | 8 4 4 0 +++---
/trunk/samples/ia64-unknown-linux-gnu/crosstool.config | 13 10 3 0 +++++++++---
/trunk/samples/x86_64-unknown-linux-uclibc/crosstool.config | 11 8 3 0 +++++++---
/trunk/samples/armeb-unknown-linux-gnueabi/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/powerpc-e500v2-linux-gnuspe/crosstool.config | 11 8 3 0 +++++++---
/trunk/samples/i686-nptl-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/powerpc-unknown-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/arm-unknown-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/mips-unknown-linux-uclibc/crosstool.config | 10 7 3 0 ++++++---
/trunk/samples/arm-unknown-linux-uclibcgnueabi/crosstool.config | 11 8 3 0 +++++++---
/trunk/samples/arm-iphone-linux-gnueabi/crosstool.config | 5 2 3 0 ++---
/trunk/samples/armeb-unknown-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/powerpc-unknown_nofpu-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/powerpc-unknown-linux-uclibc/crosstool.config | 10 7 3 0 ++++++---
/trunk/samples/arm-unknown-linux-uclibc/crosstool.config | 11 8 3 0 +++++++---
/trunk/samples/i586-geode-linux-uclibc/crosstool.config | 11 8 3 0 +++++++---
/trunk/samples/powerpc-405-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/mips-unknown-elf/crosstool.config | 8 4 4 0 +++---
/trunk/samples/armeb-unknown-linux-uclibcgnueabi/crosstool.config | 11 8 3 0 +++++++---
/trunk/samples/mipsel-unknown-linux-gnu/crosstool.config | 13 10 3 0 +++++++++---
/trunk/samples/arm-unknown-eabi/crosstool.config | 8 4 4 0 +++---
/trunk/samples/alphaev56-unknown-linux-gnu/crosstool.config | 14 11 3 0 ++++++++++---
/trunk/samples/powerpc-860-linux-gnu/crosstool.config | 13 10 3 0 +++++++++---
28 files changed, 237 insertions(+), 88 deletions(-)
yann@438
     1
--- gdb-6.5/./gdb/gdbserver/thread-db.c.orig	2006-03-15 08:13:29.000000000 -0800
yann@438
     2
+++ gdb-6.5/./gdb/gdbserver/thread-db.c	2008-04-01 21:21:23.000000000 -0700
yann@96
     3
@@ -21,6 +21,7 @@
yann@438
     4
    Foundation, Inc., 51 Franklin Street, Fifth Floor,
yann@438
     5
    Boston, MA 02110-1301, USA.  */
yann@96
     6
 
yann@96
     7
+#include <unistd.h>
yann@96
     8
 #include "server.h"
yann@96
     9
 
yann@96
    10
 #include "linux-low.h"
yann@438
    11
@@ -134,6 +135,7 @@ thread_db_create_event (CORE_ADDR where)
yann@96
    12
   td_event_msg_t msg;
yann@96
    13
   td_err_e err;
yann@96
    14
   struct inferior_linux_data *tdata;
yann@96
    15
+  int timeout;
yann@96
    16
 
yann@96
    17
   if (debug_threads)
yann@96
    18
     fprintf (stderr, "Thread creation event.\n");
yann@438
    19
@@ -144,7 +146,13 @@ thread_db_create_event (CORE_ADDR where)
yann@96
    20
      In the LinuxThreads implementation, this is safe,
yann@96
    21
      because all events come from the manager thread
yann@96
    22
      (except for its own creation, of course).  */
yann@96
    23
-  err = td_ta_event_getmsg (thread_agent, &msg);
yann@96
    24
+  for (timeout = 0; timeout < 50000; timeout++)
yann@96
    25
+    {
yann@96
    26
+      err = td_ta_event_getmsg (thread_agent, &msg);
yann@96
    27
+      if (err != TD_NOMSG)
yann@96
    28
+	break;
yann@96
    29
+      usleep(1000);
yann@96
    30
+    }
yann@96
    31
   if (err != TD_OK)
yann@96
    32
     fprintf (stderr, "thread getmsg err: %s\n",
yann@96
    33
 	     thread_db_err_str (err));