add command c

This commit is contained in:
primardj 2024-04-16 20:20:48 +01:00
parent e24e2dcbc9
commit aa0634c2e7

View file

@ -27,6 +27,10 @@ pub fn sent_signal( svwait_var: i32, verbose: i8, command: &str, mut sv: status_
// case where it's the pause command which is entered.
return misc::pause_verbose(sv.sent_signal(b"p"), true, verbose, svwait_var, sv);
}
"c" => {
// case where it's the continue command which is entered.
return misc::pause_verbose(sv.sent_signal(b"c"), false, verbose, svwait_var, sv);
}
other => {
println!("Error, command {} not implemented.", other); // TODO : Put the real error
// message.