On Sun, Mar 30, 2008 at 01:18:09PM +0200, vincent-perrier wrote:
> I am doing networking with ulm, and I have a pb,
> on one machine I run a piece of software as under:
> while (1)
>   {
>    tv.tv_sec = 1;
>    tv.tv_usec = 0;
>    select( 1, NULL, NULL, NULL, &tv );
>    tell_time();
>   }
> I get 1200 milli-sec with each loop, when all is 
> nominal, but when I do a ping -f on another machine
> towards the one running the loop above, the select
> is stuck untill I stop the ping -f.

This is the UML spending all of its time handling network interrupts
instead of doing real work.  Are you hitting it from the host, or
another UML?

                                Jeff

-- 
Work email - jdike at linux dot intel dot com

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
User-mode-linux-user mailing list
User-mode-linux-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-user

Reply via email to