Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

reverse-step multithread error

I get the following message in gdb (version 7.1):

[Thread debugging using libthread_db enabled]

and the command reverse-step

results with the following error message:

(gdb) reverse-step
Target multi-thread does not support this command

I am debugging a serial code right now, so I definitely do not need multi-threading. Can I turn this off somehow so that I get the latest reverse-debug commands to work? Also, if the code is parallelised with OpenMPI, there will be no need for multi-thread debugging at all, right?

Edit: Is this set as a compilation flag that can be just excluded?

like image 481
tmaric Avatar asked Jul 08 '11 13:07

tmaric


1 Answers

You don't mention which version of GDB you're using, but since a little while, the parameter libthread-db-search-path is available.

(gdb) set libthread-db-search-path /tmp
(gdb) start
Temporary breakpoint 1 at 0x400632: file threads.c, line 14.
warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.

will tell GDB to lookup it's helper library (libthread-db.so) in a directory where it isn't, so multithread debugging won't be enabled!

I'm not sure about OpenMPI parallel applications are multiprocesses (in contrast with OpenMP where they are multithreaded), so it won't change anything for you.

EDIT: Multithread debugging is usually only enabled when libpthread.so or equivalent is loaded by your process (ldd your-process to check if it's linked as a shared library) so if you don't need it, there might be a problem in your compilation script.

like image 162
Kevin Avatar answered Sep 23 '22 03:09

Kevin