diff options
author | Jim Blandy <jimb@codesourcery.com> | 2000-03-17 20:12:23 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2000-03-17 20:12:23 +0000 |
commit | c2d3b4ed3596c7ae2c45e5e4714c3c6b6fb19fc1 (patch) | |
tree | 0f5b29dd8a71f9cbd5b9c4538cc2b6d4d1ea4a94 /gdb/solib.c | |
parent | ec9991dc51055a8dee658267a03e8cbedd74dea9 (diff) | |
download | gdb-c2d3b4ed3596c7ae2c45e5e4714c3c6b6fb19fc1.zip gdb-c2d3b4ed3596c7ae2c45e5e4714c3c6b6fb19fc1.tar.gz gdb-c2d3b4ed3596c7ae2c45e5e4714c3c6b6fb19fc1.tar.bz2 |
* solib.c (solib_add): Delete debugging code.
Diffstat (limited to 'gdb/solib.c')
-rw-r--r-- | gdb/solib.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/gdb/solib.c b/gdb/solib.c index f1537f3..edfcb22 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -1230,16 +1230,6 @@ solib_add (char *pattern, int from_tty, struct target_ops *target) struct so_list *inferior = current_sos (); struct so_list *gdb, **gdb_link; - /* #define JIMB_DEBUG */ -#ifdef JIMB_DEBUG - printf ("GDB's shared library list:\n"); - for (gdb = so_list_head; gdb; gdb = gdb->next) - printf (" %s\n", gdb->so_original_name); - printf ("inferior's shared library list:\n"); - for (gdb = inferior; gdb; gdb = gdb->next) - printf (" %s\n", gdb->so_original_name); -#endif - #ifdef SVR4_SHARED_LIBS /* If we are attaching to a running process for which we have not opened a symbol file, we may be able to get its @@ -1317,9 +1307,6 @@ solib_add (char *pattern, int from_tty, struct target_ops *target) if (i) { *i_link = i->next; -#ifdef JIMB_DEBUG - printf ("unchanged: %s\n", i->so_name); -#endif free_so (i); gdb_link = &gdb->next; gdb = *gdb_link; @@ -1329,9 +1316,6 @@ solib_add (char *pattern, int from_tty, struct target_ops *target) else { *gdb_link = gdb->next; -#ifdef JIMB_DEBUG - printf ("removed: %s\n", gdb->so_name); -#endif /* Unless the user loaded it explicitly, free SO's objfile. */ if (! (gdb->objfile->flags & OBJF_USERLOADED)) @@ -1378,9 +1362,6 @@ solib_add (char *pattern, int from_tty, struct target_ops *target) } else { -#ifdef JIMB_DEBUG - printf ("added: %s\n", i->so_name); -#endif if (catch_errors (symbol_add_stub, i, "Error while reading shared library symbols:\n", @@ -1427,10 +1408,6 @@ solib_add (char *pattern, int from_tty, struct target_ops *target) special_symbol_handling (); } - -#ifdef JIMB_DEBUG - putchar ('\n'); -#endif } |