This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug gdb/19676] gdb fails with assert error if /proc is not mounted


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

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

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

commit 1eb2dbb8d73c344e199fd04531ec3f649e2835b2
Author: Pedro Alves <palves@redhat.com>
Date:   Tue Mar 15 16:33:04 2016 +0000

    Fix PR gdb/19676: Internal error in linux-thread.db.c if /proc not mounted

    If /proc is not mounted, GDB fails an assertion in find_new_threads_once:

     Continuing.
     .../src/gdb/linux-thread-db.c:1249: internal-error: find_new_threads_once:
Assertion `!target_has_execution' failed.
     A problem internal to GDB has been detected,
     further debugging may prove unreliable.
     Quit this debugging session? (y or n)

    That was supposed to catch misuses of td_ta_thr_iter, which is unsafe
    for live debugging.  However, if /proc is not mounted, we still
    fallback to using it.

    I didn't bother with a warning, because GDB already prints several
    others related to failing to open /proc files.

    gdb/ChangeLog:
    2016-03-15  Pedro Alves  <palves@redhat.com>

        PR gdb/19676
        * linux-thread-db.c (try_thread_db_load_1): Leave
        info->td_ta_thr_iter_p NULL iff debugging a live process and we
        have /proc access.
        (find_new_threads_once): Assert that we have a non-NULL
        info->td_ta_thr_iter_p instead of checking whether the target has
        execution.

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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]