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