| 532 | |
| 533 | |
| 534 | Future<size_t> write(const int_fd& fd, const void* buf, size_t size) |
| 535 | { |
| 536 | return write_internal(fd, buf, size, IOType::WRITE); |
| 537 | } |
| 538 | |
| 539 | |
| 540 | Future<size_t> recv(const int_fd& fd, void* buf, size_t size) |
nothing calls this directly
no test coverage detected