* 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.
This commit is contained in:
Stu Grossman
1993-10-17 01:02:57 +00:00
parent 952a820e43
commit 7c5d526e1f
3 changed files with 82 additions and 53 deletions

View File

@@ -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;