Disable continuing when running

This commit is contained in:
Dmitry Sharshakov 2021-08-21 20:55:45 +03:00
parent 5230a2b669
commit f3e47bfee4
No known key found for this signature in database
GPG key ID: 471FD32E15FD8473
3 changed files with 15 additions and 0 deletions

View file

@ -30,6 +30,7 @@ pub struct Client {
pub breakpoints: HashMap<PathBuf, Vec<SourceBreakpoint>>,
// TODO: multiple threads support
pub stack_pointer: Option<StackFrame>,
pub is_running: bool,
}
impl Client {
@ -51,6 +52,7 @@ impl Client {
//
breakpoints: HashMap::new(),
stack_pointer: None,
is_running: false,
};
tokio::spawn(Self::recv(server_rx, client_rx));