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