public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <sourceware-bugzilla@sourceware.org>
To: gdb-prs@sourceware.org
Subject: [Bug threads/18600] After forking and threads spawning, gdb leaves newly created threads stopped
Date: Thu, 30 Jul 2015 18:05:00 -0000	[thread overview]
Message-ID: <bug-18600-4717-RH4T9CG4fE@http.sourceware.org/bugzilla/> (raw)
In-Reply-To: <bug-18600-4717@http.sourceware.org/bugzilla/>

https://sourceware.org/bugzilla/show_bug.cgi?id=18600

--- Comment #4 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The gdb-7.10-branch branch has been updated by Pedro Alves
<palves@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=b31f5e79aac67f61a684c3af281caebd2ac1eece

commit b31f5e79aac67f61a684c3af281caebd2ac1eece
Author: Pedro Alves <palves@redhat.com>
Date:   Thu Jul 30 18:55:36 2015 +0100

    PR threads/18600: Threads left stopped after fork+thread spawn

    When a program forks and another process start threads while gdb is
    handling the fork event, newly created threads are left stuck stopped
    by gdb, even though gdb presents them as "running", to the user.

    This can be seen with the test added by this patch.  The test has the
    inferior fork a certain number of times and waits for all children to
    exit.  Each fork child spawns a number of threads that do nothing and
    joins them immediately.  Normally, the program should run unimpeded
    (from the point of view of the user) and exit very quickly.  Without
    this fix, it doesn't because of some threads left stopped by gdb, so
    inferior 1 never exits.

    The program triggers when a new clone thread is found while inside the
    linux_stop_and_wait_all_lwps call in linux-thread-db.c:

          linux_stop_and_wait_all_lwps ();

          ALL_LWPS (lp)
        if (ptid_get_pid (lp->ptid) == pid)
          thread_from_lwp (lp->ptid);

          linux_unstop_all_lwps ();

    Within linux_stop_and_wait_all_lwps, we reach
    linux_handle_extended_wait with the "stopping" parameter set to 1, and
    because of that we don't mark the new lwp as resumed.  As consequence,
    the subsequent resume_stopped_resumed_lwps, called from
    linux_unstop_all_lwps, never resumes the new LWP.

    There's lots of cruft in linux_handle_extended_wait that no longer
    makes sense.  On systems with CLONE events support, we don't rely on
    libthread_db for thread listing anymore, so the code that preserves
    stop_requested and the handling of last_resume_kind is all dead.

    So the fix is to remove all that, and simply always mark the new LWP
    as resumed, so that resume_stopped_resumed_lwps re-resumes it.

    gdb/ChangeLog:
    2015-07-30  Pedro Alves  <palves@redhat.com>
            Simon Marchi  <simon.marchi@ericsson.com>

        PR threads/18600
        * linux-nat.c (linux_handle_extended_wait): On CLONE event, always
        mark the new thread as resumed.  Remove STOPPING parameter.
        (wait_lwp): Adjust call to linux_handle_extended_wait.
        (linux_nat_filter_event): Adjust call to
        linux_handle_extended_wait.
        (resume_stopped_resumed_lwps): Add debug output.

    gdb/testsuite/ChangeLog:
    2015-07-30  Simon Marchi  <simon.marchi@ericsson.com>
            Pedro Alves  <palves@redhat.com>

        PR threads/18600
        * gdb.threads/fork-plus-threads.c: New file.
        * gdb.threads/fork-plus-threads.exp: New file.

-- 
You are receiving this mail because:
You are on the CC list for the bug.


  parent reply	other threads:[~2015-07-30 18:05 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-25 17:08 [Bug threads/18600] New: " simon.marchi at ericsson dot com
2015-06-25 17:08 ` [Bug threads/18600] " simon.marchi at ericsson dot com
2015-07-07 22:11 ` simon.marchi at ericsson dot com
2015-07-30 17:55 ` cvs-commit at gcc dot gnu.org
2015-07-30 17:55 ` cvs-commit at gcc dot gnu.org
2015-07-30 18:05 ` cvs-commit at gcc dot gnu.org
2015-07-30 18:05 ` cvs-commit at gcc dot gnu.org [this message]
2015-07-30 18:26 ` palves at redhat dot com
2015-08-06 14:02 ` cvs-commit at gcc dot gnu.org
2015-08-06 14:03 ` cvs-commit at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-18600-4717-RH4T9CG4fE@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=gdb-prs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).