| 75 | extern "C" { |
| 76 | |
| 77 | static int C2000SetJmp(void (*function) (void* data), void* data) |
| 78 | { |
| 79 | if (0 == setjmp(test_exit_jmp_buf[jmp_buf_index])) { |
| 80 | jmp_buf_index++; |
| 81 | function(data); |
| 82 | jmp_buf_index--; |
| 83 | return 1; |
| 84 | } |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static void C2000LongJmp() |
| 89 | { |
nothing calls this directly
no outgoing calls
no test coverage detected