aboutsummaryrefslogtreecommitdiff
path: root/helix-dap/examples/dap-lldb.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-dap/examples/dap-lldb.rs')
-rw-r--r--helix-dap/examples/dap-lldb.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/helix-dap/examples/dap-lldb.rs b/helix-dap/examples/dap-lldb.rs
index 2022ef48..ae18b214 100644
--- a/helix-dap/examples/dap-lldb.rs
+++ b/helix-dap/examples/dap-lldb.rs
@@ -84,6 +84,11 @@ pub async fn main() -> Result<()> {
println!("configurationDone: {:?}", client.configuration_done().await);
+ let mut _in = String::new();
+ std::io::stdin()
+ .read_line(&mut _in)
+ .expect("Failed to read line");
+
let threads = client.threads().await?;
println!("threads: {:#?}", threads);
let bt = client