张小白
c66f611037
windows: Improve foreground task dispatching on Windows (continued) ( #23415 )
...
Closes #22653 again
In PR #23283 , I thought that every `runnable` dispatched to the main
thread would correspond to an `EVENT_DISPATCHED` message in the message
queue. However, after testing, some `runnable`s occasionally weren’t
executed.
This PR updated the code as follows:
```rust
if let Ok(runnable) = self.main_receiver.try_recv() { <-- before
for runnable in self.main_receiver.drain() { <-- after
runnable.run();
}
```
This ensures that runnables are handled more proactively on the main
thread, now we handle `runnable`s with a much higher priority.
A big thanks to @MolotovCherry and @ArthurBrussee for their testing
efforts!
Release Notes:
- N/A
2025-01-22 16:37:36 +08:00
..
2025-01-17 17:39:22 +01:00
2025-01-20 13:19:15 -05:00
2025-01-17 17:39:22 +01:00
2025-01-22 04:57:51 +00:00
2025-01-22 04:57:51 +00:00
2025-01-22 01:32:24 +00:00
2025-01-17 17:39:22 +01:00
2025-01-21 21:22:59 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-18 22:57:17 +02:00
2025-01-18 22:57:17 +02:00
2025-01-17 17:39:22 +01:00
2025-01-20 11:48:49 -03:00
2025-01-17 17:39:22 +01:00
2025-01-21 21:22:59 +00:00
2025-01-18 22:57:17 +02:00
2025-01-17 17:39:22 +01:00
2025-01-18 22:27:08 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-20 23:20:15 +00:00
2025-01-21 22:47:56 -07:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 17:09:16 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-20 13:57:19 -05:00
2025-01-17 17:39:22 +01:00
2025-01-21 18:11:53 -05:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-22 16:37:36 +08:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:57:13 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-20 11:48:49 -03:00
2025-01-20 19:11:13 -03:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 17:55:41 +02:00
2025-01-17 17:39:22 +01:00
2025-01-21 15:05:21 -05:00
2025-01-17 17:39:22 +01:00
2025-01-21 15:05:21 -05:00
2025-01-17 17:39:22 +01:00
2025-01-18 22:27:08 +00:00
2025-01-21 17:55:41 +02:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 15:06:10 -07:00
2025-01-17 17:39:22 +01:00
2025-01-18 22:27:08 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 18:31:15 +00:00
2025-01-21 15:05:21 -05:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 18:11:53 -05:00
2025-01-21 11:13:46 -03:00
2025-01-17 17:39:22 +01:00
2025-01-22 02:56:42 +00:00
2025-01-18 22:57:17 +02:00
2025-01-18 17:36:41 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 12:48:40 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 07:14:46 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-18 22:27:08 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-20 14:15:25 +02:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-18 17:36:41 +01:00
2025-01-22 02:56:42 +00:00
2025-01-17 17:39:22 +01:00
2025-01-21 11:13:46 -03:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 18:11:53 -05:00
2025-01-17 17:39:22 +01:00
2025-01-21 19:33:08 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-21 18:11:53 -05:00
2025-01-17 17:39:22 +01:00
2025-01-18 22:27:08 +00:00
2025-01-17 17:39:22 +01:00
2025-01-17 17:39:22 +01:00
2025-01-22 05:39:04 +00:00
2025-01-21 14:19:23 +08:00
2025-01-22 05:39:04 +00:00
2025-01-22 02:56:42 +00:00
2025-01-20 11:48:49 -03:00
2025-01-20 11:48:49 -03:00