[TSM.ID].[11031972] 3Z SWEEP: Fix 7 modules — xcu-tui(unused HashMap), xcu-rpc(invalid hex 0xXC), xcu-ouroboros(unused HashMap), xcu-labyrinth(borrow checker), xcu-qcg-wasm(unused Arc/Mutex), xcu-watermark(unused var), xcu-thread-weaver(unused var). VERVAL 2x ALL CLEAN.
This commit is contained in:
@@ -76,7 +76,7 @@ impl ThreadWeaver {
|
||||
|
||||
/// Get queue stats
|
||||
pub fn stats(&self) -> Vec<(usize, u64, u64)> {
|
||||
self.queues.iter().enumerate().map(|(i, q)| {
|
||||
self.queues.iter().enumerate().map(|(_i, q)| {
|
||||
if let Ok(q) = q.lock() { (q.len(), q.processed, q.stolen_from) }
|
||||
else { (0, 0, 0) }
|
||||
}).collect()
|
||||
|
||||
Reference in New Issue
Block a user