| 1047 | } |
| 1048 | |
| 1049 | AwaitFileSystemOperationAwaiter AwaitEventLoop::fsRead(ThreadPool& threadPool, FileDescriptor& file, Span<char> buffer, |
| 1050 | AwaitFileReadResult& outResult, uint64_t offset) |
| 1051 | { |
| 1052 | return AwaitFileSystemOperationAwaiter(*this, threadPool, AwaitFileSystemOperationType::Read, file, buffer, |
| 1053 | outResult, offset); |
| 1054 | } |
| 1055 | |
| 1056 | AwaitFileSystemOperationAwaiter AwaitEventLoop::fsWrite(ThreadPool& threadPool, FileDescriptor& file, |
| 1057 | Span<const char> data, AwaitFileWriteResult* outResult, |