diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-09-13 01:55:17 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-09-13 01:55:17 +0000 |
commit | 064002de2b47fd7dc86feefc50dd489ca110cff0 (patch) | |
tree | b04d10ac289e9b05026602fed985572f84f2491b /gdb/linux-thread.c | |
parent | 78f0949be7cc59219063bf349b1d260807a6a254 (diff) | |
download | gdb-064002de2b47fd7dc86feefc50dd489ca110cff0.zip gdb-064002de2b47fd7dc86feefc50dd489ca110cff0.tar.gz gdb-064002de2b47fd7dc86feefc50dd489ca110cff0.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/linux-thread.c')
-rw-r--r-- | gdb/linux-thread.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gdb/linux-thread.c b/gdb/linux-thread.c index 3cf8433..054188d 100644 --- a/gdb/linux-thread.c +++ b/gdb/linux-thread.c @@ -568,9 +568,7 @@ restore_all_signals (void) If ALL is non-zero, process all threads. If ALL is zero, skip threads with pending status. */ static void -iterate_active_threads (func, all) - void (*func)(int); - int all; +iterate_active_threads (void (*func) (int), int all) { CORE_ADDR descr; int pid; |