Update 2016-12 There is now also a minimal example for this behavior: https://community.nxp.com/message/862676
I\'m using a ARM Cortex M4 with fr
From the RTOS side of things, C++ exceptions are just a glorified jump. As long as they're jumping from one bit of your code to another, they don't interfere with the RTOS. So you can write a try { } catch(std::exception) { }
.
When there is no C++ handler, the RTOS indeed will have to step in as your C++ code stops running.