diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-06-03 20:54:43 +0000 |
commit | a9596cd98aa07c137ed362c7d92df64213b4fa04 (patch) | |
tree | 93d2aea2e0fa868da0f9b56626e5cfe8c2341869 /gdb/solib.c | |
parent | 74eda9eb7acc3c2bd375826f92e8ca233d5f767a (diff) | |
download | binutils-cagney_writestrings-20030508-branch.zip binutils-cagney_writestrings-20030508-branch.tar.gz binutils-cagney_writestrings-20030508-branch.tar.bz2 |
Snap const char * mess.cagney_writestrings-20030508-branch
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index 289b84f..43655e6 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -537,7 +537,8 @@ update_solib_list (int from_tty, struct target_ops *target) FROM_TTY and TARGET are as described for update_solib_list, above. */ void -solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms) +solib_add (const char *pattern, int from_tty, struct target_ops *target, + int readsyms) { struct so_list *gdb; @@ -618,7 +619,7 @@ solib_add (char *pattern, int from_tty, struct target_ops *target, int readsyms) */ static void -info_sharedlibrary_command (char *ignore, int from_tty) +info_sharedlibrary_command (const char *ignore, int from_tty) { register struct so_list *so = NULL; /* link map state variable */ int header_done = 0; @@ -824,7 +825,7 @@ in_solib_dynsym_resolve_code (CORE_ADDR pc) */ static void -sharedlibrary_command (char *args, int from_tty) +sharedlibrary_command (const char *args, int from_tty) { dont_repeat (); solib_add (args, from_tty, (struct target_ops *) 0, 1); @@ -843,14 +844,14 @@ sharedlibrary_command (char *args, int from_tty) are not discarded. Also called from remote.c. */ void -no_shared_libraries (char *ignored, int from_tty) +no_shared_libraries (const char *ignored, int from_tty) { objfile_purge_solibs (); do_clear_solib (NULL); } static void -reload_shared_libraries (char *ignored, int from_tty) +reload_shared_libraries (const char *ignored, int from_tty) { no_shared_libraries (NULL, from_tty); solib_add (NULL, from_tty, NULL, auto_solib_add); |