As noted in this question about using libsigsegv to detect multiple stack overflows, I'm working with a colleague to try to detect and recover from stack overflow in an interpreter. In brief,
- We set up a stack-overflow handler using
libsigsegv. - The handler leaves via
sigsegv_leave_handler(), which then returns to the interpreter's main loop viasiglongjmp.
This setup successfully detects the first stack overflow, but the second stack overflow leads to a bus error. I would like to hit this problem with valgrind, but valgrind takes over at the first segfault. My question is, therefore
how can I get valgrind to let libsigsegv handle the first segfault, then take over memory checking?