On Thu, 14 Mar 2013 16:21:14 -0700
Trent Nelson <tr...@snakebite.org> wrote:
> 
>     Actually, what's really interesting is the new registered IO
>     facilities in Windows 8/2012.  The Microsoft recommendation for
>     achieving the ultimate performance (least amount of jitter, lowest
>     latency, highest throughput) is to do something like this:
> 
>         while (1) {
> 
>             if (!DequeueCompletionRequests(...)) {
>                 YieldProcessor();
>                 continue;
>             } else {
>                 /* Handle requests */
>             }
>         }

Does Microsoft change their recommendations every couple of years? :)

Regards

Antoine.


_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to