Lines 134-138
Link Here
|
134 |
//assert(is_controlpipe); |
134 |
//assert(is_controlpipe); |
135 |
FD_SET(controlpipe[0], &set); |
135 |
FD_SET(controlpipe[0], &set); |
136 |
status = select(maxfd + 1, &set, NULL, NULL, NULL); |
136 |
do { |
|
|
137 |
errno = 0; |
138 |
status = select(maxfd + 1, &set, NULL, NULL, NULL); |
139 |
} while (status == -1 && errno == EINTR); |
137 |
if (status == -1) break; |
140 |
if (status == -1) break; |
138 |
|
141 |
|