| 2 | #include "common/processors.hpp" |
| 3 | |
| 4 | bool skr_io_future_t::is_ready() const SKR_NOEXCEPT |
| 5 | { |
| 6 | return get_status() == SKR_IO_STAGE_COMPLETED; |
| 7 | } |
| 8 | bool skr_io_future_t::is_enqueued() const SKR_NOEXCEPT |
| 9 | { |
| 10 | return get_status() == SKR_IO_STAGE_ENQUEUED; |
no outgoing calls
no test coverage detected