| 72 | } |
| 73 | |
| 74 | IOBatchId RAMService::open_batch(uint64_t n) SKR_NOEXCEPT |
| 75 | { |
| 76 | uint64_t seq = (uint64_t)skr_atomicu64_add_relaxed(&batch_sequence, 1); |
| 77 | return skr::static_pointer_cast<IIOBatch>(ram_batch_pool->allocate(this, seq, n)); |
| 78 | } |
| 79 | |
| 80 | BlocksRAMRequestId RAMService::open_request() SKR_NOEXCEPT |
| 81 | { |
no test coverage detected