g++ stack unwinding
Is there any way to dis开发者_Go百科able the stack unwinding feature of g++
?
If you're trying to "disable" at just one point -- maybe to effect a quick emergency exit from a module? -- you might consider using setjmp and longjmp from the C std library.
精彩评论