| 1695 | } |
| 1696 | |
| 1697 | static int kwsysProcessSetNonBlocking(int fd) |
| 1698 | { |
| 1699 | int flags = fcntl(fd, F_GETFL); |
| 1700 | if (flags >= 0) { |
| 1701 | flags = fcntl(fd, F_SETFL, flags | O_NONBLOCK); |
| 1702 | } |
| 1703 | return flags >= 0; |
| 1704 | } |
| 1705 | |
| 1706 | #if defined(__VMS) |
| 1707 | int decc$set_child_standard_streams(int fd1, int fd2, int fd3); |
no outgoing calls
no test coverage detected
searching dependent graphs…