Continue to debug after failed assertion on Linux?

前端 未结 5 708
萌比男神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:28

    Have you tried to send a SIGCONT signal to the process?

    kill -s SIGCONT 
    

提交回复
热议问题