2#include <cosmos/error/RuntimeError.hxx>
3#include <cosmos/io/iovector.hxx>
7static_assert(
sizeof(
struct iovec_const) ==
sizeof(
struct iovec),
8 "size mismatch between iovec_const vs. struct iovec in system headers");
10template <
typename MEMORY_REGION>
24 bool vec_finished =
true;
26 for (
auto &entry: *
this) {
27 processed_bytes -= entry.update(processed_bytes);
29 if (!entry.finished()) {
35 if (processed_bytes != 0) {
36 cosmos_throw (
RuntimeError(
"inconsistency while updating IOVector"));
A sequence of IOMemoryRegion specifications for scatter/gather I/O in the StreamIO API.
bool update(size_t processed_bytes)
Update the vector given the number of bytes processed by a system call.
Exception type for generic runtime errors.