| 526 | |
| 527 | |
| 528 | Future<size_t> read(const int_fd& fd, void* buf, size_t size) |
| 529 | { |
| 530 | return read_internal(fd, buf, size, IOType::READ); |
| 531 | } |
| 532 | |
| 533 | |
| 534 | Future<size_t> write(const int_fd& fd, const void* buf, size_t size) |
nothing calls this directly
no test coverage detected