Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

command to suspend a thread with GDB

Tags:

c++

c

gdb

pthreads

I'm a little new to GDB. I'm hoping someone can help me with something that should be quite simple, I've used Google/docs but I'm just missing something.

What is the 'normal' way folks debug threaded apps with GDB? I'm using pthreads. I'm wanting to watch only one thread - the two options I see are

a) tell the debugger somehow to attach to a particular thread, such that stepping wont result in jumping threads on each context switch

b) tell the debugger to suspend/free any 'uninteresting' threads

I'd prefer to go route b) - reading the help for GDB I dont see a command for this, tips?

like image 421
stuck Avatar asked Apr 17 '11 22:04

stuck


2 Answers

See documentation for set scheduler-locking on.

Beware: if you suspend other threads, and if one of them holds a lock, and if your interesting thread needs that lock at some point while stepping, you'll deadlock.

What is the 'normal' way folks debug threaded apps

You can never debug thread correctness, you can only design it in. In my experience, most of debugging of threaded apps is putting in assertions, and examining state of the world when one of the assertions is violated.

like image 126
Employed Russian Avatar answered Sep 25 '22 22:09

Employed Russian


First, you need to enable comfortable for multi-threading debugger behavior with the following commands. No idea why it's disabled by default.

set target-async 1
set non-stop on

I personally put those commands into .gdbinit file. They make your every command to be applied only to the currently focused thread. Note: the thread might be running, so you have to pause it.

To see the focused thread execute the thread.

To switch to another thread append the number of the thread, e.g. thread 2.

To see all threads with their numbers issue info thread.

To apply a command to a particular thread issue something like thread apply threadnum command. E.g. thread apply 4 bt will apply backtrace command to a thread number 4. thread apply all continue continues all paused threads.

There is a small problem though — many commands needs the thread to be paused. I know a few ways of doing that:

  • interrupt command: interrupts the thread execution, accepts a number of a thread to pause, without an argument breaks the focused one.
  • Setting a breakpoint somewhere. Note that you may set a breakpoint to a particular thread, so that other threads will ignore it, like break linenum thread threadnum. E.g. break 25 thread 4.

You may also find very useful that you can set a list of commands to be executed when a breakpoint hit through the command commands — so e.g. you may quickly print interesting values, then continue execution.

like image 34
Hi-Angel Avatar answered Sep 21 '22 22:09

Hi-Angel