aboutsummaryrefslogtreecommitdiff
path: root/gdb/solib-aix.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2013-05-07 09:50:41 +0000
committerJoel Brobecker <brobecker@gnat.com>2013-05-07 09:50:41 +0000
commitff99b71b224df9f65ba8e7a588c944483bbcb5ef (patch)
treee608ade3a20eaeb0c507bda22bbb055752810e1b /gdb/solib-aix.c
parent26a4dda9e5c3de44c1540ab835e909f83583589d (diff)
downloadgdb-ff99b71b224df9f65ba8e7a588c944483bbcb5ef.zip
gdb-ff99b71b224df9f65ba8e7a588c944483bbcb5ef.tar.gz
gdb-ff99b71b224df9f65ba8e7a588c944483bbcb5ef.tar.bz2
Rename TARGET_OBJECT_AIX_LIBRARIES to TARGET_OBJECT_LIBRARIES_AIX
More consistent with the name of other similar object names. gdb/ChangeLog: * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]: Renames TARGET_OBJECT_AIX_LIBRARIES. * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with TARGET_OBJECT_LIBRARIES_AIX throughout. * solib-aix.c: Likwise.
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 8c17a6f..f891af0 100644
--- a/gdb/solib-aix.c
+++ b/gdb/solib-aix.c
@@ -296,11 +296,11 @@ solib_aix_get_library_list (struct inferior *inf, const char *warning_msg)
return data->library_list;
library_document = target_read_stralloc (&current_target,
- TARGET_OBJECT_AIX_LIBRARIES,
+ TARGET_OBJECT_LIBRARIES_AIX,
NULL);
if (library_document == NULL && warning_msg != NULL)
{
- warning (_("%s (failed to read TARGET_OBJECT_AIX_LIBRARIES)"),
+ warning (_("%s (failed to read TARGET_OBJECT_LIBRARIES_AIX)"),
warning_msg);
return NULL;
}
@@ -308,7 +308,7 @@ solib_aix_get_library_list (struct inferior *inf, const char *warning_msg)
if (solib_aix_debug)
fprintf_unfiltered (gdb_stdlog,
- "DEBUG: TARGET_OBJECT_AIX_LIBRARIES = \n%s\n",
+ "DEBUG: TARGET_OBJECT_LIBRARIES_AIX = \n%s\n",
library_document);
data->library_list = solib_aix_parse_libraries (library_document);