On Sat, Mar 30, 2002 at 08:59:46PM +0100, Marcus Brinkmann wrote:
> Hi,
> 
> it seems that poll() is broken.  gdb is one of the rare programs using poll
> at all, and I wrote this test program which hangs, too:

Uh, it seems that select() is broken, too:

#include <sys/types.h>

main ()
{
  fd_set fd;

  FD_ZERO (&fd);
  FD_SET (0, &fd);
  select (1, &fd, 0, 0, 0);
}

This program hangs, too.  Time to look into glibc.

Thanks,
Marcus 


-- 
`Rhubarb is no Egyptian god.' Debian http://www.debian.org [EMAIL PROTECTED]
Marcus Brinkmann              GNU    http://www.gnu.org    [EMAIL PROTECTED]
[EMAIL PROTECTED]
http://www.marcus-brinkmann.de

_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to