diff options
author | Stu Grossman <grossman@cygnus> | 1993-10-17 01:02:57 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1993-10-17 01:02:57 +0000 |
commit | 7c5d526e1f7183353e8ede9612ca7edd0b06b1ce (patch) | |
tree | c82d531c3c04782e5ef8fea6706412c1f712b42a /gdb/corelow.c | |
parent | 952a820e43deb9f8c794bbd3d8349fdaddfed2da (diff) | |
download | binutils-gdb-7c5d526e1f7183353e8ede9612ca7edd0b06b1ce.tar.gz |
* procfs.c (procfs_wait): Losing Unixware can't do poll on /proc
files. Use PIOCWSTOP instead.
* corelow.c (add_to_thread_list): Fix arg to match prototype.
Diffstat (limited to 'gdb/corelow.c')
-rw-r--r-- | gdb/corelow.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/corelow.c b/gdb/corelow.c index 1e803efea3a..407940c961f 100644 --- a/gdb/corelow.c +++ b/gdb/corelow.c @@ -84,12 +84,13 @@ solib_add_stub (from_tty) list of threads in a core file. */ static void -add_to_thread_list (abfd, asect, reg_sect) +add_to_thread_list (abfd, asect, reg_sect_arg) bfd *abfd; asection *asect; - asection *reg_sect; + PTR reg_sect_arg; { int thread_id; + asection *reg_sect = reg_sect_arg; if (strncmp (bfd_section_name (abfd, asect), ".reg/", 5) != 0) return; |