Continue to debug after failed assertion on Linux?

前端 未结 5 746
萌比男神i
萌比男神i 2020-12-29 07:57

When an assertion fails with Visual C++ on Windows, the debugger stops, displays the message, and then lets you continue (or, if no debugging session is running, offers to l

5条回答
  •  清酒与你
    2020-12-29 08:21

    You can configure gdb to handle specific signals in a different way. For example, the following will cause SIGSTOP not to be treated as a stoppable event.

    handle SIGSTOP nostop noprint pass

    help handle within gdb will give you more information.

提交回复
热议问题