Lines Matching +full:way +full:- +full:select
24 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 # The combination of ualarm() firing before and after the select(2) timeout
30 # triggers select() to return EINTR a number of times.
43 sed '1,/^EOF/d' < $odir/$0 > $dir/select.c
44 mycc -o select -Wall -Wextra -O0 -g select.c -lpthread || exit 1
45 rm -f select.c
48 /tmp/select
51 rm -f /tmp/select
76 #define PARALLEL 16 /* Fails seen with 1 - 16 */
106 r = select(1, NULL, NULL, NULL, &tv);
108 } while (r == -1 && errno == EINTR);
109 if (r == -1)
110 err(1, "select");
149 while ((time(NULL) - start) < RUNTIME && e == 0) {