debugger: Always show process list in attach (#28685)

Closes #ISSUE

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-04-15 14:13:19 +02:00 committed by GitHub
parent d4a985a6e3
commit 98d001bad5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 78 additions and 112 deletions

View file

@ -8,7 +8,7 @@ struct DapRegistryState {
adapters: BTreeMap<DebugAdapterName, Arc<dyn DebugAdapter>>,
}
#[derive(Default)]
#[derive(Clone, Default)]
/// Stores available debug adapters.
pub struct DapRegistry(Arc<RwLock<DapRegistryState>>);