1
0
forked from M-Labs/artiq

analyzer: increase thread stack size

This commit is contained in:
occheung 2024-12-24 13:09:45 +08:00 committed by Sebastien Bourdeauducq
parent 1a2bfa504c
commit 85024ce491

View File

@ -230,7 +230,7 @@ fn startup() {
let subkernel_mutex = subkernel_mutex.clone();
let drtio_routing_table = drtio_routing_table.clone();
let up_destinations = up_destinations.clone();
io.spawn(8192, move |io| { analyzer::thread(io, &aux_mutex, &ddma_mutex, &subkernel_mutex, &drtio_routing_table, &up_destinations) });
io.spawn(16384, move |io| { analyzer::thread(io, &aux_mutex, &ddma_mutex, &subkernel_mutex, &drtio_routing_table, &up_destinations) });
}
#[cfg(has_grabber)]