Check for interrupts and throw the sentinel exception if one is pending
| 57 | |
| 58 | // Check for interrupts and throw the sentinel exception if one is pending |
| 59 | inline void checkUserInterrupt() { |
| 60 | if (R_ToplevelExec(checkInterruptFn, NULL) == FALSE) |
| 61 | throw internal::InterruptedException(); |
| 62 | } |
| 63 | |
| 64 | } // namespace Rcpp |
| 65 |
nothing calls this directly
no test coverage detected