search for: delta_m

Displaying 4 results from an estimated 4 matches for "delta_m".

Did you mean: delta_t
2003 Apr 29
0
[PATCH] Fix busy-looping behaviour in ipconfig
...sec; } if (pending == 0) break; - if (timeout < 0) - timeout = 0; - - nr = poll(fds, NR_FDS, timeout * 1000); - now = time(NULL); - - if (fds[0].revents & POLLRDNORM) - do_pkt_recv(pkt_fd, now); + timeout_ms = timeout * 1000; + + for (x = 0; x < 2; x++) { + int delta_ms; + + if (timeout_ms <= 0) + timeout_ms = 1; + + nr = poll(fds, NR_FDS, timeout_ms); + prev = now; + gettimeofday(&now, NULL); + + if ((fds[0].revents & POLLRDNORM) && + do_pkt_recv(pkt_fd, now.tv_sec) == 1) { + break; + } + packet_discard(); + +...
2003 Apr 29
0
[PATCH] Add configurable timeout to ipconfig
...l now, prev; + time_t start; pkt_fd = packet_open(); if (pkt_fd == -1) { @@ -281,6 +283,7 @@ fds[0].events = POLLRDNORM; gettimeofday(&now, NULL); + start = now.tv_sec; while (1) { int timeout = 60; int pending = 0; @@ -308,8 +311,8 @@ for (x = 0; x < 2; x++) { int delta_ms; - if (timeout_ms <= 0) - timeout_ms = 1; + if (timeout_ms <= 0 || loop_timeout == 0) + timeout_ms = 100; nr = poll(fds, NR_FDS, timeout_ms); prev = now; @@ -319,6 +322,14 @@ do_pkt_recv(pkt_fd, now.tv_sec) == 1) { break; } + + if (loop_timeout &gt...
2009 Feb 12
0
Spearman's rank correlation test
...es are computed using algorithm AS 89. Algorithm AS 89 was introduced by the paper D. J. Best & D. E. Roberts (1975), Algorithm AS 89: The Upper Tail Probabilities of Spearman's rho. Applied Statistics, Vol. 24, No. 3, 377-379. Table 1(a) in this paper presents maximum absolute error |\Delta_m|, of the approximation for all possible values of the statistic S for samples sizes n = 7, 9, 11, 13. The presented errors are n |\Delta_m| 7 0.0046 9 0.0011 11 0.0006 13 0.0005 Due to the problem explained in detail including a patch at https://stat.ethz.ch/pipermail/r-devel...
2011 Jul 08
4
[PATCH 0/4] usr/kinit checkpatch
Various coding style fixes checkpatch warns about. The goal is not to be 100% checkpatch compliant, but to have more consistent coding style. As this is a trivial patch serie, will land in 24 hours in klibc git, unless of course ml review hits a bugger. Checked with size(3) that the generated kinit, fstype, ipconfig and nfsmount are the same. maximilian attems (4): [klibc] ipconfig: reduce