I have such code as follows
try {
doSomething();
} catch(InterruptException) {
goto rewind_code;
}
if(0) {
rewind_code:
longjmp(savepoint, 1);
}
My question is, is the exception object that is stored by the C++ runtime free'ed when I goto out of the catch block? Or is the runtime allowed to cache it until the surrounding function exists or something like that? I simply want to ensure that if I execute above code multiple times, each time taking the rewind code, I won't leak memory (because the longjmp won't execute cleanup code emitted by the compiler into or before function prologues).
warning: what the heck are you doing?when seeing this code.:)– Matteo Italia Aug 31 '11 at 20:45gotothat is equally simple, I'm all ears. Thanks for your generous insight! – Johannes Schaub - litb Aug 31 '11 at 21:01throw/catchandlongjmpjust seems to be asking for trouble. Big trouble. Trouble right here in River City kinds of trouble.longjmpis a C function; in a sense it is the C equivalent ofthrow. C has no requirements regarding how it treats C++, and C++ has no requirements on howlongjmpperforms. – David Hammen Aug 31 '11 at 21:50