| 51 | namespace io { |
| 52 | |
| 53 | IOContext::IOContext(MemoryPool* pool, StopToken stop_token) |
| 54 | : IOContext(pool, internal::GetIOThreadPool(), std::move(stop_token)) {} |
| 55 | |
| 56 | const IOContext& default_io_context() { |
| 57 | // Avoid using a global variable because of initialization order issues (ARROW-18383) |
nothing calls this directly
no test coverage detected