diff options
author | David Carlton <carlton@bactrian.org> | 2002-11-15 19:19:28 +0000 |
---|---|---|
committer | David Carlton <carlton@bactrian.org> | 2002-11-15 19:19:28 +0000 |
commit | fb8abdb0ebe68c5fb20228d81bebbf45782c052c (patch) | |
tree | 621da7c283d7d3bd0e9ca87bfdb53e5fcfcb72ac /gdb/target.c | |
parent | 1e04139942197a796f7ab9dadeeaac2e78a301d4 (diff) | |
download | gdb-fb8abdb0ebe68c5fb20228d81bebbf45782c052c.zip gdb-fb8abdb0ebe68c5fb20228d81bebbf45782c052c.tar.gz gdb-fb8abdb0ebe68c5fb20228d81bebbf45782c052c.tar.bz2 |
2002-11-15 David Carlton <carlton@math.stanford.edu>
* Merge from mainline; tag is carlton_dictionary-20021115-merge.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.c b/gdb/target.c index 75d022f..51ace74 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -666,6 +666,7 @@ update_current_target (void) INHERIT (to_async_mask_value, t); INHERIT (to_find_memory_regions, t); INHERIT (to_make_corefile_notes, t); + INHERIT (to_get_thread_local_address, t); INHERIT (to_magic, t); #undef INHERIT @@ -1733,7 +1734,7 @@ debug_print_register (const char * func, int regno) { int i; unsigned char *buf = alloca (MAX_REGISTER_RAW_SIZE); - read_register_gen (regno, buf); + deprecated_read_register_gen (regno, buf); fprintf_unfiltered (gdb_stdlog, " = "); for (i = 0; i < REGISTER_RAW_SIZE (regno); i++) { |