Jaydeep Chovatia
unread,Oct 30, 2012, 3:57:45 PM10/30/12You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Hi,
I am using GNU gdb v7.2 on my Linux box. I would like to debug in such a way that when my program reaches a particular break point then other threads should continue execution. To do that I have started my application with following options in gdb:
(gdb) b testfile.cxx:123
(gdb) set target-async 1
(gdb) set non-stop on
(gdb) set pagination off
(gdb) run
But when my program reaches above break point and after that if I execute "Continue" or "bt" then I get following error:
(gdb) c
Continuing.
Cannot execute this command while the selected thread is running.
Any help on this would be appreciated.
thanks,
Jaydeep