| 96 | } |
| 97 | |
| 98 | void VFSRAMReader::dispatch(SkrAsyncServicePriority priority) SKR_NOEXCEPT |
| 99 | { |
| 100 | IORequestId rq; |
| 101 | if (fetched_requests[priority].try_dequeue(rq)) |
| 102 | { |
| 103 | auto launcher = VFSReaderFutureLauncher(job_queue); |
| 104 | loaded_futures[priority].add( |
| 105 | launcher.async([this, rq, priority](){ |
| 106 | SkrZoneScopedN("VFSReadTask"); |
| 107 | dispatchFunction(priority, rq); |
| 108 | return true; |
| 109 | }) |
| 110 | ); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | bool VFSRAMReader::poll_processed_request(SkrAsyncServicePriority priority, IORequestId& request) SKR_NOEXCEPT |
| 115 | { |
nothing calls this directly
no test coverage detected