Searched refs:waittime (Results 1 - 3 of 3) sorted by relevance

/httpd/test/
H A Dtest_select.c33 long waittime = 4096; local
37 while ((waittime > 0) && (waittime < 3000000)) {
38 printf("%d\n", waittime);
39 tv.tv_sec = waittime/1000000;
40 tv.tv_usec = waittime%1000000;
41 waittime <<= 1;
/httpd/server/
H A Dmpm_unix.c179 apr_time_t waittime = 1024 * 16; local
210 apr_sleep(waittime);
211 /* don't let waittime get longer than 1 second; otherwise, we don't
215 waittime = waittime * 4;
216 if (waittime > apr_time_from_sec(1)) {
217 waittime = apr_time_from_sec(1);
/httpd/support/
H A Dab.c254 apr_interval_time_t waittime; /* between request and reading response */ member in struct:data
802 if ((a->waittime) < (b->waittime))
804 if ((a->waittime) > (b->waittime))
887 minwait = ap_min(minwait, s->waittime);
892 maxwait = ap_max(maxwait, s->waittime);
897 totalwait += s->waittime;
914 a = ((double)s->waittime - meanwait);
946 medianwait = (stats[done / 2].waittime
[all...]

Completed in 2191 milliseconds