开发者

not stopping all threads in gdb

开发者 https://www.devze.com 2023-01-15 11:44 出处:网络
GDB normal开发者_如何学编程ly stops all threads if a breakpoint is reached (or Ctrl+C is pressed in the GDB shell). I\'m aware that commands like scheduler-locking and schedule-multiple exists, but I

GDB normal开发者_如何学编程ly stops all threads if a breakpoint is reached (or Ctrl+C is pressed in the GDB shell). I'm aware that commands like scheduler-locking and schedule-multiple exists, but I see no possibility to let a defined thread run in the background while another is debugged.


You can use set target-async on to enable asynchronous mode, if your target supports it. Then, you can specify background execution with commands. For example,

continue&

can be used to run a single thread, and

interrupt [-a]

to suspend execution of a single thread, or the whole program.

In conjunction with non-stop mode, you can examine a single thread while others continue to run in the background:

 # If using the CLI, pagination breaks non-stop.
 set pagination off

 # Finally, turn it on!
 set non-stop on
 # Before debugging is started!
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号