I can't seem to find what the C++ compiler + library for the C6713 do with exceptions.
I know that the C++ new operator can throw exceptions, but it may also just return 0. However I cannot find what the TI compiler does.
And if I have an unhandled expection, what will my code do? Will it send a message to stdout or stderr? Wil it call abort() or exit()?
B.t.w. does anyone know of a nice overview of which C++ operators and functions can throw exceptions?
Basically my problem is that my application sometimes just stops working and I find it lurking in SYS_EXITFN. That is why I expect I have an unhandled exception somewhere. But I don't see anything in my Stdout window.
Any help is welcome,
Maarten Brock