> 2) Exceptions > In C++ the software designer could use exceptions to exit methods in for > example an error case. Does this instrumentation cover this, too?
I believe that the gcc instrument-function hook takes care of that, all exceptions go through the cleanup code at the end of the function before popping the stack. You should check the generated assembly to be sure (gcc -S). _______________________________________________ ltt-dev mailing list [email protected] http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev
