diff options
author | Doug Evans <dje@google.com> | 2009-12-19 00:29:11 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 2009-12-19 00:29:11 +0000 |
commit | 00f515dab69c7c12fc558402a9a701e28a787523 (patch) | |
tree | 36450b1561d8e091d95a75a7f2567f9478fe8d8e /gdb/gdb_proc_service.h | |
parent | 42853c79aa14e4246cbfa94d41c96375b560cc84 (diff) | |
download | gdb-00f515dab69c7c12fc558402a9a701e28a787523.zip gdb-00f515dab69c7c12fc558402a9a701e28a787523.tar.gz gdb-00f515dab69c7c12fc558402a9a701e28a787523.tar.bz2 |
gdb/
* gdb_proc_service.h (psaddr_t): Fix type.
* linux-thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
signature to match glibc.
(thread_db_get_thread_local_address): Use psaddr_t for type of
address to match parameter of td_thr_tls_get_addr_p.
Cast through psaddr_t instead of (void*) to match parameter of
td_thr_tls_get_addr_p.
gdbserver/
* gdb_proc_service.h (psaddr_t): Fix type.
* thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
signature to match glibc.
Diffstat (limited to 'gdb/gdb_proc_service.h')
-rw-r--r-- | gdb/gdb_proc_service.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdb_proc_service.h b/gdb/gdb_proc_service.h index de62c9d..721f91c 100644 --- a/gdb/gdb_proc_service.h +++ b/gdb/gdb_proc_service.h @@ -47,7 +47,7 @@ typedef unsigned int lwpid_t; #endif #ifndef HAVE_PSADDR_T -typedef unsigned long psaddr_t; +typedef void *psaddr_t; #endif #ifndef HAVE_PRGREGSET_T |