summaryrefslogtreecommitdiffstats
path: root/contrib/gdb/gdb/gdb_thread_db.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gdb/gdb/gdb_thread_db.h')
-rw-r--r--contrib/gdb/gdb/gdb_thread_db.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/contrib/gdb/gdb/gdb_thread_db.h b/contrib/gdb/gdb/gdb_thread_db.h
index 8088da0..81dd0a0 100644
--- a/contrib/gdb/gdb/gdb_thread_db.h
+++ b/contrib/gdb/gdb/gdb_thread_db.h
@@ -63,7 +63,8 @@ typedef enum
TD_NOTSD, /* No thread-specific data available. */
TD_MALLOC, /* Out of memory. */
TD_PARTIALREG, /* Not entire register set was read or written. */
- TD_NOXREGS /* X register set not available for given thread. */
+ TD_NOXREGS, /* X register set not available for given thread. */
+ TD_NOTALLOC /* TLS memory not yet allocated. */
} td_err_e;
@@ -198,6 +199,16 @@ typedef struct td_notify
} u;
} td_notify_t;
+/* Some people still have libc5 or old glibc with no uintptr_t.
+ They lose. glibc 2.1.3 was released on 2000-02-25, and it has
+ uintptr_t, so it's reasonable to force these people to upgrade. */
+
+#ifndef HAVE_UINTPTR_T
+#error No uintptr_t available; your C library is too old.
+/* Inhibit further compilation errors after this error. */
+#define uintptr_t void *
+#endif
+
/* Structure used to report event. */
typedef struct td_event_msg
{
OpenPOWER on IntegriCloud