| 5122 | // safe-call-into-r-impl.cpp |
| 5123 | bool SetEnableSignalStopSource(bool enabled); |
| 5124 | extern "C" SEXP _arrow_SetEnableSignalStopSource(SEXP enabled_sexp){ |
| 5125 | BEGIN_CPP11 |
| 5126 | arrow::r::Input<bool>::type enabled(enabled_sexp); |
| 5127 | return cpp11::as_sexp(SetEnableSignalStopSource(enabled)); |
| 5128 | END_CPP11 |
| 5129 | } |
| 5130 | // safe-call-into-r-impl.cpp |
| 5131 | bool CanRunWithCapturedR(); |
| 5132 | extern "C" SEXP _arrow_CanRunWithCapturedR(){ |
nothing calls this directly
no test coverage detected