diff options
author | Tristan Gingold <gingold@adacore.com> | 2012-03-05 11:37:33 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2012-03-05 11:37:33 +0000 |
commit | 169081d0534030ce80a8be7487d765c830aebcec (patch) | |
tree | b4b8c6e07254c0ee857e533eb0506885124b8b30 /gdb/target.h | |
parent | 34864976a85af27573d2e8a10c31ad99b0186b67 (diff) | |
download | gdb-169081d0534030ce80a8be7487d765c830aebcec.zip gdb-169081d0534030ce80a8be7487d765c830aebcec.tar.gz gdb-169081d0534030ce80a8be7487d765c830aebcec.tar.bz2 |
2012-03-05 Tristan Gingold <gingold@adacore.com>
* target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB.
* remote.c (PACKET_qXfer_uib): New enum value.
(remote_protocol_features): Add entry for PACKET_qXfer_uib.
(remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB.
(_initialize_remote): Call add_packet_config_cmd for
xfer:uib packet.
doc/
2012-03-05 Tristan Gingold <gingold@adacore.com>
* gdb.texinfo (General Query Packets): Document xfer:uib:read.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index 850cb38..ed2bcdd 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -280,7 +280,9 @@ enum target_object /* Load maps for FDPIC systems. */ TARGET_OBJECT_FDPIC, /* Darwin dynamic linker info data. */ - TARGET_OBJECT_DARWIN_DYLD_INFO + TARGET_OBJECT_DARWIN_DYLD_INFO, + /* OpenVMS Unwind Information Block. */ + TARGET_OBJECT_OPENVMS_UIB /* Possible future objects: TARGET_OBJECT_FILE, ... */ }; |