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/config/nm-linux.h | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/config/nm-linux.h')
-rw-r--r-- | gdb/config/nm-linux.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gdb/config/nm-linux.h b/gdb/config/nm-linux.h index ecf4711..376eb93 100644 --- a/gdb/config/nm-linux.h +++ b/gdb/config/nm-linux.h @@ -38,15 +38,12 @@ struct objfile; /* Hook to look at new objfiles (shared libraries) */ -extern void -linuxthreads_new_objfile PARAMS ((struct objfile *objfile)); +extern void linuxthreads_new_objfile (struct objfile *objfile); /* Method to print a human-readable thread description */ -extern char * -linuxthreads_pid_to_str PARAMS ((int pid)); +extern char *linuxthreads_pid_to_str (int pid); -extern int -linuxthreads_prepare_to_proceed PARAMS ((int step)); +extern int linuxthreads_prepare_to_proceed (int step); #define PREPARE_TO_PROCEED(select_it) linuxthreads_prepare_to_proceed (1) /* Defined to make stepping-over-breakpoints be thread-atomic. */ |