implem_command #9
1 changed files with 4 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue