summaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-11-14 20:49:23 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-11-14 20:49:23 +0000
commit32cec1bdbcee534d21cdd3ce58ed88704d3eee70 (patch)
tree6517373ec1f51c961128eade97635fcaa716c39c /gdb/target.h
parentca34d4fc612799f6815163eb1fa9c225ce74d4ab (diff)
downloadgdb-32cec1bdbcee534d21cdd3ce58ed88704d3eee70.tar.gz
2003-11-14 Jeff Johnston <jjohnstn@redhat.com>
* config/ia64/nm-linux.h (NATIVE_XFER_UNWIND_TABLE): New macro to set up the ia64 linux native target method for getting the kernel unwind table. * ia64-linux-nat.c (ia64_linux_xfer_unwind_table): New function. * inftarg.c (child_xfer_partial): Enable section of code to handle TARGET_OBJECT_UNWIND_TABLE. * target.h (target_object): Add new TARGET_OBJECT_UNWIND_TABLE macro.
Diffstat (limited to 'gdb/target.h')
-rw-r--r--gdb/target.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gdb/target.h b/gdb/target.h
index 42b95964964..21956df9dd9 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -223,8 +223,10 @@ enum target_object
/* AVR target specific transfer. See "avr-tdep.c" and "remote.c". */
TARGET_OBJECT_AVR,
/* Transfer up-to LEN bytes of memory starting at OFFSET. */
- TARGET_OBJECT_MEMORY
- /* Possible future ojbects: TARGET_OJBECT_FILE, TARGET_OBJECT_PROC,
+ TARGET_OBJECT_MEMORY,
+ /* Kernel Unwind Table. See "ia64-tdep.c". */
+ TARGET_OBJECT_UNWIND_TABLE,
+ /* Possible future objects: TARGET_OBJECT_FILE, TARGET_OBJECT_PROC,
TARGET_OBJECT_AUXV, ... */
};