From 34c944a3655b8e82a4280222c358e910ab79d3f9 Mon Sep 17 00:00:00 2001 From: kevinb Date: Sat, 28 Oct 2000 22:15:08 +0000 Subject: [PATCH] Protoization. --- gdb/ChangeLog | 5 +++++ gdb/symtab.c | 20 +++++--------------- gdb/thread.c | 5 ++--- 3 files changed, 12 insertions(+), 18 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index c9f3623527..7f0703e8c4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2000-10-28 Kevin Buettner + + * symtab.c (decode_line_2, file_matches, search_symbols): Protoize. + * thread.c (iterate_over_threads): Protoize. + 2000-10-27 J.T. Conklin * arch-utils.c (set_architecture, set_architecture_from_arch_mach, diff --git a/gdb/symtab.c b/gdb/symtab.c index d612072681..f47d1b0b12 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -3260,11 +3260,8 @@ decode_line_spec (char *string, int funfirstline) as canonical line specs there. */ static struct symtabs_and_lines -decode_line_2 (sym_arr, nelts, funfirstline, canonical) - struct symbol *sym_arr[]; - int nelts; - int funfirstline; - char ***canonical; +decode_line_2 (struct symbol *sym_arr[], int nelts, int funfirstline, + char ***canonical) { struct symtabs_and_lines values, return_values; char *args, *arg1; @@ -3479,10 +3476,7 @@ sources_info (char *ignore, int from_tty) } static int -file_matches (file, files, nfiles) - char *file; - char *files[]; - int nfiles; +file_matches (char *file, char *files[], int nfiles) { int i; @@ -3539,12 +3533,8 @@ make_cleanup_free_search_symbols (struct symbol_search *symbols) free_search_symbols should be called when *MATCHES is no longer needed. */ void -search_symbols (regexp, kind, nfiles, files, matches) - char *regexp; - namespace_enum kind; - int nfiles; - char *files[]; - struct symbol_search **matches; +search_symbols (char *regexp, namespace_enum kind, int nfiles, char *files[], + struct symbol_search **matches) { register struct symtab *s; diff --git a/gdb/thread.c b/gdb/thread.c index 9ae251e90c..94f0b3f379 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -191,9 +191,8 @@ find_thread_pid (int pid) */ struct thread_info * -iterate_over_threads (callback, data) - int (*callback) (); - void *data; +iterate_over_threads (int (*callback) (struct thread_info *, void *), + void *data) { struct thread_info *tp; -- 2.11.0