Displaying 2 results from an estimated 2 matches for "100msec".
Did you mean:
10msec
2007 Feb 15
2
profile provider: is it me doing stupid things?
...n, stdout) continuously. Wrote it myself so I dare say it is functionally correct :-)
The output I get is:
read 15078
read 0
read 0
read 0
And this pattern continues till hell freezes over: first slot has all the values, others are always zero. Tried this with 200msec and 100msec intervals too. No difference.
Mmmm I expect more of a uniform distribution. Lets try to sample in DTrace a little different. In the end it might be an unforeseen side effect of the application :)
The following DTrace script was used:
BEGIN
{
baseline = timestamp;
}
syscall::read:entry
/...
2004 Aug 06
1
why is there a timeout in _accept_connection (icecast/src/connection.c)
Hi all,
I was wondering why there is a timeout (100msec) in the
_acception_connection function (icecast/src/connection.c) where it calls
the util_timed_wait_for_fd.
To me this seems to incur unecessary load on the machine on which the
icecast server runs, since each time the timeout expires some more user
time is used up by the process.
In my particul...