Extract and ingest executable symbols in a background thread.
| 317 | |
| 318 | /// Extract and ingest executable symbols in a background thread. |
| 319 | pub struct IngestTask { |
| 320 | task: JoinHandle<Result<()>>, |
| 321 | ranges_extracted: Arc<AtomicUsize>, |
| 322 | ranges_ingested: Arc<AtomicUsize>, |
| 323 | } |
| 324 | |
| 325 | impl IngestTask { |
| 326 | pub fn spawn(path: PathBuf) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected