Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* Bug in testsuite/gdb.base/tls.c
@ 2003-07-29 20:07 Michael Elizabeth Chastain
  2003-07-29 20:56 ` Elena Zannoni
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Elizabeth Chastain @ 2003-07-29 20:07 UTC (permalink / raw)
  To: ezannoni; +Cc: gdb

I'm seeing a lot of test suite hangs with the new tls.c.
I tracked it down to this code:

  for( i = 0; i < N_THREADS; i++ )
    {
      do
	{
	  errno = 0;

	  if (sem_wait (&tell_main) == -1)
	    {
	      if (errno != EINTR)
		{
		  ...
		  return;
		}
	      ...
	    }
	  }
	  while (errno == EINTR);
    }

It turns out that errno can be EINTR even when the return value is 0!
That screws up the loop counter.

This happened with Red Hat Linux 8, glibc 2.2.93-5-rh.  It is sensitive
to the placement of breakpoints, which is not surprising.

I think it's normal Unix semantics that when the return value is zero,
errno has no meaning.

I'll code up a patch for tls.c, on those lines.

Michael C


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2003-07-29 20:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-29 20:07 Bug in testsuite/gdb.base/tls.c Michael Elizabeth Chastain
2003-07-29 20:56 ` Elena Zannoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox