MCPcopy Create free account
hub / github.com/apache/arrow / IsRunning

Method IsRunning

cpp/src/arrow/testing/process.cc:232–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230 }
231
232 bool IsRunning() {
233#ifdef BOOST_PROCESS_AVAILABLE
234# ifdef BOOST_PROCESS_USE_V2
235 boost::system::error_code error_code;
236 return process_ && process_->running(error_code);
237# else
238 return process_ && process_->running();
239# endif
240#else
241 return false;
242#endif
243 }
244
245 uint64_t pid() {
246#ifdef BOOST_PROCESS_AVAILABLE

Callers

nothing calls this directly

Calls 1

runningMethod · 0.80

Tested by

no test coverage detected