summaryrefslogtreecommitdiff
path: root/gdb/gdb_thread_db.h
diff options
context:
space:
mode:
authorMichael Chastain <mec.gnu@mindspring.com>2003-02-26 17:24:12 +0000
committerMichael Chastain <mec.gnu@mindspring.com>2003-02-26 17:24:12 +0000
commit6cff4bd93d5bdf54483e11530fa2bded916325ce (patch)
tree0c17fe29e657a8c06431e2bc1ae24df89d132f6b /gdb/gdb_thread_db.h
parent897616ba87ebceb2f743cac87c01858e8c009122 (diff)
downloadgdb-6cff4bd93d5bdf54483e11530fa2bded916325ce.tar.gz
2003-02-26 Michael Chastain <mec@shout.net>
Close PR build/660. * PROBLEMS (i[3456]86-*-linux*): Note explicit error message for old libc5/glibc. * gdb_thread_db.h: Die if not HAVE_UINTPTR_T.
Diffstat (limited to 'gdb/gdb_thread_db.h')
-rw-r--r--gdb/gdb_thread_db.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/gdb/gdb_thread_db.h b/gdb/gdb_thread_db.h
index c47c424588c..81dd0a062db 100644
--- a/gdb/gdb_thread_db.h
+++ b/gdb/gdb_thread_db.h
@@ -199,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
{