This commit is contained in:
2026-01-27 12:00:34 +01:00
parent 5456c9414a
commit 324d1feda1
17 changed files with 277 additions and 833 deletions

View File

@@ -160,16 +160,6 @@ pub struct AnalysisHandle {
thread: Option<JoinHandle<()>>,
}
impl AnalysisHandle {
#[allow(dead_code)]
pub fn shutdown(mut self) {
self.running.store(false, Ordering::SeqCst);
if let Some(t) = self.thread.take() {
let _ = t.join();
}
}
}
impl Drop for AnalysisHandle {
fn drop(&mut self) {
self.running.store(false, Ordering::SeqCst);