Lines Matching refs:timeout
61 struct timespec timeout;
62 timeout.tv_sec = 5;
63 timeout.tv_nsec = 0;
67 int ret = pselect(STDOUT_FILENO + 1, NULL, &set, NULL, &timeout, NULL);
80 struct timespec timeout;
81 timeout.tv_sec = 5;
82 timeout.tv_nsec = 0;
86 int ret = pselect(-1, NULL, &set, NULL, &timeout, NULL);
92 * @tc.desc : Monitor stdout file for readability (timeout)
99 struct timespec timeout;
100 timeout.tv_sec = 2;
101 timeout.tv_nsec = 0;
106 int ret = pselect(STDOUT_FILENO + 1, &set, NULL, NULL, &timeout, &sigmask);
120 struct timespec timeout;
121 timeout.tv_sec = 5;
122 timeout.tv_nsec = 0;
126 int ret = __pselect_time64(STDOUT_FILENO + 1, NULL, &set, NULL, &timeout, NULL);