summaryrefslogtreecommitdiff
path: root/gdb/solib-aix.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2013-05-07 09:50:49 +0000
committerJoel Brobecker <brobecker@gnat.com>2013-05-07 09:50:49 +0000
commit8c56e1125462717d270bcd47b3e2db4ae11fb719 (patch)
tree86a29531832377d7c83755d0ec473e988bf8b83a /gdb/solib-aix.c
parentff99b71b224df9f65ba8e7a588c944483bbcb5ef (diff)
AIX: Change XML to use library-list-aix instead of library-list.
This is more consistent with what we do with other similar XML lists, and avoids a potential confusion with the library-list XML list. gdb/ChangeLog: * features/library-list-aix.dtd: Replace library-list by library-list-aix. * rs6000-nat.c: Replace library-list by library-list-aix throughout. * solib-aix.c: Likewise.
Diffstat (limited to 'gdb/solib-aix.c')
-rw-r--r--gdb/solib-aix.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/solib-aix.c b/gdb/solib-aix.c
index f891af0293..d9307694e3 100644
--- a/gdb/solib-aix.c
+++ b/gdb/solib-aix.c
@@ -179,7 +179,7 @@ library_list_start_library (struct gdb_xml_parser *parser,
VEC_safe_push (lm_info_p, *list, item);
}
-/* Handle the start of a <library-list> element. */
+/* Handle the start of a <library-list-aix> element. */
static void
library_list_start_list (struct gdb_xml_parser *parser,
@@ -213,7 +213,7 @@ solib_aix_free_library_list (void *p)
}
/* The allowed elements and attributes for an AIX library list
- described in XML format. The root element is a <library-list>. */
+ described in XML format. The root element is a <library-list-aix>. */
static const struct gdb_xml_attribute library_attributes[] =
{
@@ -242,7 +242,7 @@ static const struct gdb_xml_attribute library_list_attributes[] =
static const struct gdb_xml_element library_list_elements[] =
{
- { "library-list", library_list_attributes, library_list_children,
+ { "library-list-aix", library_list_attributes, library_list_children,
GDB_XML_EF_NONE, library_list_start_list, NULL },
{ NULL, NULL, NULL, GDB_XML_EF_NONE, NULL, NULL }
};