| 1069 | return AwaitFileSystemOperationAwaiter(*this, threadPool, AwaitFileSystemOperationType::Read, file, buffer, |
| 1070 | outResult, offset); |
| 1071 | } |
| 1072 | |
| 1073 | AwaitFileSystemOperationAwaiter AwaitEventLoop::fsWrite(ThreadPool& threadPool, FileDescriptor& file, |
| 1074 | Span<const char> data, AwaitFileWriteResult* outResult, |
| 1075 | uint64_t offset) |
| 1076 | { |
| 1077 | return AwaitFileSystemOperationAwaiter(*this, threadPool, AwaitFileSystemOperationType::Write, file, data, |
| 1078 | outResult, offset); |
| 1079 | } |
| 1080 |