diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/thread.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/thread.c')
-rw-r--r-- | gdb/thread.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gdb/thread.c b/gdb/thread.c index c910dbb..2c87470 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -45,23 +45,23 @@ /* Prototypes for exported functions. */ -void _initialize_thread PARAMS ((void)); +void _initialize_thread (void); /* Prototypes for local functions. */ static struct thread_info *thread_list = NULL; static int highest_thread_num; -static struct thread_info *find_thread_id PARAMS ((int num)); +static struct thread_info *find_thread_id (int num); -static void thread_command PARAMS ((char *tidstr, int from_tty)); -static void thread_apply_all_command PARAMS ((char *, int)); -static int thread_alive PARAMS ((struct thread_info *)); -static void info_threads_command PARAMS ((char *, int)); -static void thread_apply_command PARAMS ((char *, int)); -static void restore_current_thread PARAMS ((int)); -static void switch_to_thread PARAMS ((int pid)); -static void prune_threads PARAMS ((void)); +static void thread_command (char *tidstr, int from_tty); +static void thread_apply_all_command (char *, int); +static int thread_alive (struct thread_info *); +static void info_threads_command (char *, int); +static void thread_apply_command (char *, int); +static void restore_current_thread (int); +static void switch_to_thread (int pid); +static void prune_threads (void); void init_thread_list () |