We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7053aed commit a800a1dCopy full SHA for a800a1d
src/tools/rust-analyzer/crates/rust-analyzer/src/main_loop.rs
@@ -3,6 +3,7 @@
3
4
use std::{
5
fmt,
6
+ ops::Div as _,
7
time::{Duration, Instant},
8
};
9
@@ -499,7 +500,7 @@ impl GlobalState {
499
500
tracing::trace!("updating notifications for {:?}", subscriptions);
501
// Split up the work on multiple threads, but we don't wanna fill the entire task pool with
502
// diagnostic tasks, so we limit the number of tasks to a quarter of the total thread pool.
- let max_tasks = self.config.main_loop_num_threads() / 4;
503
+ let max_tasks = self.config.main_loop_num_threads().div(4).max(1);
504
let chunk_length = subscriptions.len() / max_tasks;
505
let remainder = subscriptions.len() % max_tasks;
506
0 commit comments