correct printing in code, suppress useless comments.
This commit is contained in:
parent
1bcbcc9082
commit
6d9fb61ef8
2 changed files with 3 additions and 16 deletions
|
@ -29,25 +29,13 @@ pub fn sent_signal( svwait_var: i32, verbose: i8, command: &str, mut sv: status_
|
||||||
|
|
||||||
if command == "u" {
|
if command == "u" {
|
||||||
// case where command is up
|
// case where command is up
|
||||||
if sv.sent_signal(b"u") == true {
|
if sv.sent_signal(b"u") {
|
||||||
println!("Tout c bien passé");
|
|
||||||
return 0;
|
return 0;
|
||||||
} else {
|
} else {
|
||||||
println!("Ko Error panic tout ce que tu veux.");
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//let service = fs::OpenOptions::new().append(true).open("supervise/control");
|
|
||||||
|
|
||||||
//if ! service.is_ok() {
|
|
||||||
// println!("warning: {}: unable to append to supervise/control: file does not exist", sv.clone());
|
|
||||||
// return make_exit_code(exit_code);
|
|
||||||
//}
|
|
||||||
//let mut control = match service {
|
|
||||||
// Ok(file) => file,
|
|
||||||
// Err(..) => panic!("Shouln't goes there, the programmer is trash."),
|
|
||||||
//};
|
|
||||||
|
|
||||||
|
|
||||||
// TODO
|
// TODO
|
||||||
|
|
|
@ -108,7 +108,6 @@ pub fn sent_signal(signal: &[u8]) -> bool {
|
||||||
loop {
|
loop {
|
||||||
match tx.try_write(signal) {
|
match tx.try_write(signal) {
|
||||||
Ok(..) => {
|
Ok(..) => {
|
||||||
println!("write successful");
|
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
Err(e) if e.kind() == ErrorKind::WouldBlock => {
|
Err(e) if e.kind() == ErrorKind::WouldBlock => {
|
||||||
|
@ -116,10 +115,10 @@ pub fn sent_signal(signal: &[u8]) -> bool {
|
||||||
},
|
},
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
dbg!(e);
|
dbg!(e);
|
||||||
println!("Error while trying to sent command");
|
println!("Impossible Error while writing on pipe.");
|
||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
}
|
};
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
Err(e) if e.raw_os_error() == Some(libc::ENXIO) => {
|
Err(e) if e.raw_os_error() == Some(libc::ENXIO) => {
|
||||||
|
|
Loading…
Reference in a new issue