2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-12 12:03:35 +08:00

analyzer: increase thread stack size

This commit is contained in:
occheung 2024-12-24 13:09:45 +08:00 committed by Sébastien Bourdeauducq
parent 9c99d116bb
commit 5b52f187d0

View File

@ -240,7 +240,7 @@ fn startup() {
let subkernel_mutex = subkernel_mutex.clone(); let subkernel_mutex = subkernel_mutex.clone();
let drtio_routing_table = drtio_routing_table.clone(); let drtio_routing_table = drtio_routing_table.clone();
let up_destinations = up_destinations.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)] #[cfg(has_grabber)]