| 137 | } |
| 138 | |
| 139 | static void install_default_exception_handler(void) |
| 140 | { |
| 141 | rt_int32_t i; |
| 142 | |
| 143 | for (i = 0; i < RT_EXCEPTION_MAX; i++) |
| 144 | sys_exception_handlers[i] = |
| 145 | (exception_func_t)unhandled_exception_handle; |
| 146 | } |
| 147 | |
| 148 | int rt_hw_exception_init(void) |
| 149 | { |
no outgoing calls
no test coverage detected