Mirror of the gdb mailing list
 help / color / mirror / Atom feed
* gdb and multi-threaded (NPTL) programs
@ 2006-03-24 20:24 John Fodor
  2006-03-24 20:27 ` Daniel Jacobowitz
  2006-03-24 20:40 ` Andreas Schwab
  0 siblings, 2 replies; 11+ messages in thread
From: John Fodor @ 2006-03-24 20:24 UTC (permalink / raw)
  To: gdb

Hi Folks,

A colleague had trouble debugging a multi-threaded (NPTL) program using 
GDB. To see what was going on, I created a purely artificial program 
where 2 POSIX threads synchronize their execution using semaphores. 
While single-stepping one thread, the other thread gets an EINTR error 
from sem_wait. After looking at info gdb (related to threads) I got my 
answer:

"There is an unfortunate side effect.  If one thread stops for a
breakpoint, or for some other reason, and another thread is blocked in a
system call, then the system call may return prematurely.  This is a
consequence of the interaction between multiple threads and the signals
that GDB uses to implement breakpoints and other events that stop
execution.

To handle this problem, your program should check the return value of
each system call and react appropriately.  This is good programming
style anyways. For example, do not write code like this:

        sleep (10);

The call to `sleep' will return early if a different thread stops at
a breakpoint or for some other reason. Instead, write this:

        int unslept = 10;
        while (unslept > 0)
          unslept = sleep (unslept);

A system call is allowed to return early, so the system is still
conforming to its specification.  But GDB does cause your
multi-threaded program to behave differently than it would without GDB."

Hmmm... so people who use POSIX threads have to put every syscall into a 
loop, ignoring EINTR? What if it's a real timeout? Sorry this does not 
seem reasonable to me.

Will there be a fix in the future to this unfortunate side-effect? How 
do NPTL programmers single-step their programs today? Using syscalls in 
loops? Using a different debugger?

Thanks for you help.

John


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

end of thread, other threads:[~2006-03-24 21:21 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-24 20:24 gdb and multi-threaded (NPTL) programs John Fodor
2006-03-24 20:27 ` Daniel Jacobowitz
2006-03-24 20:52   ` John Fodor
2006-03-24 21:07     ` Daniel Jacobowitz
2006-03-24 20:40 ` Andreas Schwab
2006-03-24 20:45   ` Eric Desjardins
2006-03-24 20:47     ` Andreas Schwab
2006-03-24 21:15   ` John Fodor
2006-03-24 21:21     ` Andreas Schwab
2006-03-28  9:33       ` Jim Blandy
2006-03-28 10:43         ` Daniel Jacobowitz

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