This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [patch][rfc] Allow GDB to search for the right libthread_db.so.1
- From: Paul Pluzhnikov <ppluzhnikov at google dot com>
- To: Paul Pluzhnikov <ppluzhnikov at google dot com>, Eli Zaretskii <eliz at gnu dot org>, brobecker at adacore dot com, teawater at gmail dot com, tromey at redhat dot com, bauerman at br dot ibm dot com, gdb-patches at sourceware dot org
- Date: Fri, 1 May 2009 10:02:04 -0700
- Subject: Re: [patch][rfc] Allow GDB to search for the right libthread_db.so.1
- References: <daef60380904222321h33fe2fe1n7dd0f6e94e804d8c@mail.gmail.com> <daef60380904230105u20843291pe8ee9f98e5ed1d76@mail.gmail.com> <daef60380904230432l7f49d44dw17437e208b35cb9f@mail.gmail.com> <8ac60eac0904291330m78b43c47p1cc9b8379e31e923@mail.gmail.com> <20090430185551.GB10734@adacore.com> <8ac60eac0904301211x245c8b7cp546042d832eb1fe@mail.gmail.com> <8ac60eac0904301618j61051e9du38b34afbc7ed64a3@mail.gmail.com> <83eiv9e1bb.fsf@gnu.org> <8ac60eac0905010849m7dc29bb5h171a703fa79d8b76@mail.gmail.com> <20090501164905.GA32287@caradoc.them.org>
On Fri, May 1, 2009 at 9:49 AM, Daniel Jacobowitz <drow@false.org> wrote:
> Have you tried this?
Yes. It's slightly better than what I said: GDB knows about the original
(main) thread, and the thread that crashed, but knows no other threads.
Here is a sample session.
$ cat thread-crash.c
#include <pthread.h>
void *fn(void *p)
{
if (p) {
char *cp = 0;
cp[1] = 'a'; /* crash! */
}
sleep(60);
return 0;
}
#define N 5
int main()
{
pthread_t tid[N];
int i;
for (i = 0; i < N; ++i)
pthread_create(tid+i, 0, fn, i == N-1 ? &i : 0);
for (i = 0; i < N; ++i)
pthread_join(tid[i], 0);
return 0;
}
First with a patched gdb:
$ /home/ppluzhnikov/Archive/sourceware.org/gdb/build/gdb/gdb
./thread-crash-64-v10
GNU gdb (GDB) 6.8.50.20090430-cvs
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-unknown-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
(gdb) r
[Thread debugging using libthread_db enabled]
[New Thread 0x40800950 (LWP 32344)]
[New Thread 0x41001950 (LWP 32345)]
[New Thread 0x41802950 (LWP 32346)]
[New Thread 0x42003950 (LWP 32347)]
[New Thread 0x42804950 (LWP 32348)]
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0x42804950 (LWP 32348)]
0x00000000004005ab in fn (p=0x7fffffffda0c) at thread-crash.c:7
7 cp[1] = 'a'; /* crash! */
(gdb) inf thread
* 6 Thread 0x42804950 (LWP 32348) 0x00000000004005ab in fn
(p=0x7fffffffda0c) at thread-crash.c:7
5 Thread 0x42003950 (LWP 32347) 0x00007ffff78ffb81 in nanosleep ()
from /lib/libc.so.6
4 Thread 0x41802950 (LWP 32346) 0x00007ffff78ffb81 in nanosleep ()
from /lib/libc.so.6
3 Thread 0x41001950 (LWP 32345) 0x00007ffff78ffb81 in nanosleep ()
from /lib/libc.so.6
2 Thread 0x40800950 (LWP 32344) 0x00007ffff78ffb81 in nanosleep ()
from /lib/libc.so.6
1 Thread 0x7ffff7fda6e0 (LWP 32341) 0x00007ffff7bd127f in
__lll_unlock_wake_private () from /lib/libpthread.so.0
(gdb) q
And now with current CVS Head:
$ /home/ppluzhnikov/Archive/sourceware.org/gdb/build2/gdb/gdb
./thread-crash-64-v10
GNU gdb (GDB) 6.8.50.20090501-cvs
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-unknown-linux-gnu".
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>...
(gdb) r
warning: Cannot initialize thread debugging library: versions of
libpthread and libthread_db do not match
warning: Cannot initialize thread debugging library: versions of
libpthread and libthread_db do not match
[New LWP 32375]
Program received signal SIGSEGV, Segmentation fault.
[Switching to LWP 32375]
0x00000000004005ab in fn (p=0x7fffffffda0c) at thread-crash.c:7
7 cp[1] = 'a'; /* crash! */
(gdb) inf thread
* 2 LWP 32375 0x00000000004005ab in fn (p=0x7fffffffda0c) at thread-crash.c:7
1 LWP 32368 0x00007ffff7939b01 in clone () from /lib/libc.so.6
--
Paul Pluzhnikov