diff options
author | Daniel Jacobowitz <dan@debian.org> | 2007-07-02 22:01:09 +0000 |
---|---|---|
committer | Daniel Jacobowitz <dan@debian.org> | 2007-07-02 22:01:09 +0000 |
commit | 5f6185ba88020e5b27bfa247324dbb663d37a5ee (patch) | |
tree | f1252c252f8ae6fbf0a5cdd36857978eab4b48ca /gdb/target.h | |
parent | 6822b2b997226699ac17670891a9af442ec0a9c8 (diff) | |
download | gdb-5f6185ba88020e5b27bfa247324dbb663d37a5ee.tar.gz |
* Makefile.in (XMLFILES): Add library-list.dtd.
(ALLDEPFILES): Add solib-target.o.
(solib-target.o): New rule.
* remote.c (PACKET_qXfer_libraries): New constant.
(remote_protocol_features): Add qXfer:libraries:read.
(remote_wait): Recognize library stop replies.
(remote_async_wait): Likewise. Fix typo.
(remote_xfer_partial): Handle TARGET_OBJECT_LIBRARIES.
(init_remote_async_ops): Fix typo.
(_initialize_remote): Register "set remote library-info-packet".
* solib-som.c (som_current_sos): Set addr_low and addr_high.
* solib-target.c: New file.
* solib.c (solib_map_sections): Use addr_low and addr_high instead
of textsection.
(info_sharedlibrary_command): Likewise.
(solib_add_library, solib_remove_library): New.
* solist.h (struct so_list): Replace textsection with addr_low and
addr_high.
* target.h (enum target_object): Add TARGET_OBJECT_LIBRARIES.
* NEWS: Describe new qXfer:libraries:read and shared library
event support.
* features/library-list.dtd: New.
* gdb.texinfo (Remote Configuration): Document library-info-packet.
Add other missing entries. Adjust the table size to fit.
(Stop Reply Packets): Use @itemize instead of @enumerate. Document
stop reasons including the new "library" event.
(General Query Packets): Adjust table widths for qSupported. Mention
qXfer:libraries:read reply to qSupported and document the new packet.
(Library List Format): New section.
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 7cde49b6450..d6e82e254a6 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -212,7 +212,9 @@ enum target_object TARGET_OBJECT_FLASH, /* Available target-specific features, e.g. registers and coprocessors. See "target-descriptions.c". ANNEX should never be empty. */ - TARGET_OBJECT_AVAILABLE_FEATURES + TARGET_OBJECT_AVAILABLE_FEATURES, + /* Currently loaded libraries, in XML format. */ + TARGET_OBJECT_LIBRARIES /* Possible future objects: TARGET_OBJECT_FILE, TARGET_OBJECT_PROC, ... */ }; |