summaryrefslogtreecommitdiffstats
path: root/gdb/symtab.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-05-29 13:18:15 +0000
committerAndrew Cagney <cagney@redhat.com>2000-05-29 13:18:15 +0000
commit5bd987222faa869dc0524071f9694c41688d1ece (patch)
treefbf0b11a599cbbc3181d9dd174b333509f205dea /gdb/symtab.c
parent1ae00f9d91f0126ed5505229dc31672599591b4b (diff)
downloadppe42-binutils-5bd987222faa869dc0524071f9694c41688d1ece.tar.gz
ppe42-binutils-5bd987222faa869dc0524071f9694c41688d1ece.zip
Purge symtab of make_cleanup_func.
Pass correct arg to make_cleanup_free_search_symbols.
Diffstat (limited to 'gdb/symtab.c')
-rw-r--r--gdb/symtab.c23
1 files changed, 17 insertions, 6 deletions
diff --git a/gdb/symtab.c b/gdb/symtab.c
index 4e1589603c..41c23aa6b1 100644
--- a/gdb/symtab.c
+++ b/gdb/symtab.c
@@ -3564,6 +3564,19 @@ free_search_symbols (symbols)
}
}
+static void
+do_free_search_symbols_cleanup (void *symbols)
+{
+ free_search_symbols (symbols);
+}
+
+struct cleanup *
+make_cleanup_free_search_symbols (struct symbol_search *symbols)
+{
+ return make_cleanup (do_free_search_symbols_cleanup, symbols);
+}
+
+
/* Search the symbol table for matches to the regular expression REGEXP,
returning the results in *MATCHES.
@@ -3796,8 +3809,7 @@ search_symbols (regexp, kind, nfiles, files, matches)
if (tail == NULL)
{
sr = psr;
- old_chain = make_cleanup ((make_cleanup_func)
- free_search_symbols, sr);
+ old_chain = make_cleanup_free_search_symbols (sr);
}
else
tail->next = psr;
@@ -3841,8 +3853,7 @@ search_symbols (regexp, kind, nfiles, files, matches)
if (tail == NULL)
{
sr = psr;
- old_chain = make_cleanup ((make_cleanup_func)
- free_search_symbols, &sr);
+ old_chain = make_cleanup_free_search_symbols (sr);
}
else
tail->next = psr;
@@ -3957,7 +3968,7 @@ symtab_symbol_info (regexp, kind, from_tty)
/* must make sure that if we're interrupted, symbols gets freed */
search_symbols (regexp, kind, 0, (char **) NULL, &symbols);
- old_chain = make_cleanup ((make_cleanup_func) free_search_symbols, symbols);
+ old_chain = make_cleanup_free_search_symbols (symbols);
printf_filtered (regexp
? "All %ss matching regular expression \"%s\":\n"
@@ -4045,7 +4056,7 @@ rbreak_command (regexp, from_tty)
struct cleanup *old_chain;
search_symbols (regexp, FUNCTIONS_NAMESPACE, 0, (char **) NULL, &ss);
- old_chain = make_cleanup ((make_cleanup_func) free_search_symbols, ss);
+ old_chain = make_cleanup_free_search_symbols (ss);
for (p = ss; p != NULL; p = p->next)
{
OpenPOWER on IntegriCloud