| 491 | } |
| 492 | |
| 493 | ssize_t |
| 494 | write(int sockfd, const void *buf, size_t count) |
| 495 | { |
| 496 | if(is_fstack_fd(sockfd)){ |
| 497 | sockfd = restore_fstack_fd(sockfd); |
| 498 | return ff_write(sockfd, buf, count); |
| 499 | } |
| 500 | |
| 501 | return SYSCALL(write)(sockfd, buf, count); |
| 502 | } |
| 503 | |
| 504 | int |
| 505 | ioctl(int sockfd, int request, void *p) |
no test coverage detected