<html><head><base href="x-msg://736/"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><blockquote type="cite"><span class="Apple-style-span" style="color: rgb(31, 73, 125); font-family: Calibri, sans-serif; font-size: 15px; ">Since there is nothing else in the “doEventLoop” I terms of calls I have to assume the 10mS you mentioned should be the execution time of the “SingleStep” method.</span></blockquote><div><br></div>That's correct. If the server really is doing nothing, and there is nothing happening on any on any of its sockets, then "SingleStep()" - specifically, the call to "select()" at line 80 of "BasicTaskScheduler.cpp" - should take about 10ms on average. (The reason for this is that there will be no activity on any of the sockets specified by "readSet", "writeSet", "exceptionSet", but "tv_timeToDelay" will be 10 ms (on average).)</div><div><br></div><div>If, however, you find that the call to "select()" is consistently taking much less than 10ms on your system, then you'll have to figure out what's going wrong. (For starters, I suggest looking at the value of "selectResult" returned by the "select()" call; that should tell you why "select()" is returning early.)</div><div><br></div><div>Remember, You Have Complete Source Code.</div><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; ">Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a></span></span>
</div>
<br></body></html>