bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gdb, libio, readline


From: Marcus Brinkmann
Subject: Re: gdb, libio, readline
Date: Sat, 30 Mar 2002 21:08:07 +0100
User-agent: Mutt/1.3.27i

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 brinkmd@debian.org
Marcus Brinkmann              GNU    http://www.gnu.org    marcus@gnu.org
Marcus.Brinkmann@ruhr-uni-bochum.de
http://www.marcus-brinkmann.de



reply via email to

[Prev in Thread] Current Thread [Next in Thread]