Message210487
About Windows, it looks like select() and GetQueuedCompletionStatus() (poll function the IocpProactor) round the timeout away from zero (the timeout is a number of milliseconds, an integer).
Examples with GetQueuedCompletionStatus():
- 2 ms (timeout) => 15 ms (elasped time)
- 100 ms => 109 ms
- 157 ms => 172 ms
Example with select():
- 2 ms => 16 ms
- 100 ms => 110 ms
- 156 ms => 171 ms |
|
Date |
User |
Action |
Args |
2014-02-07 16:18:22 | vstinner | set | recipients:
+ vstinner, gvanrossum, neologix |
2014-02-07 16:18:22 | vstinner | set | messageid: <1391789902.46.0.081699878923.issue20505@psf.upfronthosting.co.za> |
2014-02-07 16:18:22 | vstinner | link | issue20505 messages |
2014-02-07 16:18:22 | vstinner | create | |
|