Add stack pointer display when stopped

This commit is contained in:
Dmitry Sharshakov 2021-08-21 14:15:29 +03:00
parent 738e8a4dd3
commit 6458edecfd
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
4 changed files with 70 additions and 17 deletions

View file

@ -36,6 +36,8 @@ pub struct Client {
//
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
// TODO: multiple threads support
pub stack_pointer: Option<StackFrame>,
}
impl Client {
@ -56,6 +58,7 @@ impl Client {
awaited_events: Arc::new(Mutex::new(HashMap::default())),
//
breakpoints: HashMap::new(),
stack_pointer: None,
};
tokio::spawn(Self::recv(Arc::clone(&client.awaited_events), server_rx));