| 350 | } |
| 351 | |
| 352 | ssize_t |
| 353 | readv(int sockfd, const struct iovec *iov, int iovcnt) |
| 354 | { |
| 355 | if (unlikely(inited == 0)) { |
| 356 | INIT_FUNCTION(readv); |
| 357 | return real_readv(sockfd, iov, iovcnt); |
| 358 | } |
| 359 | |
| 360 | if (ff_fdisused(sockfd)) { |
| 361 | return ff_readv(sockfd, iov, iovcnt); |
| 362 | } else { |
| 363 | return real_readv(sockfd, iov, iovcnt); |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | int |
| 368 | ioctl(int sockfd, int request, void *p) |
no test coverage detected