summaryrefslogtreecommitdiffstats
path: root/src/app/process_killer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/process_killer.rs')
-rw-r--r--src/app/process_killer.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/app/process_killer.rs b/src/app/process_killer.rs
index e91034c4..2e74de16 100644
--- a/src/app/process_killer.rs
+++ b/src/app/process_killer.rs
@@ -9,10 +9,12 @@ pub fn kill_process_given_pid(pid : u64) -> crate::utils::error::Result<()> {
}
else if cfg!(target_os = "windows") {
// Windows
+ // See how sysinfo does it... https://docs.rs/sysinfo/0.9.5/sysinfo/trait.ProcessExt.html
debug!("Sorry, Windows support is not implemented yet!");
}
else if cfg!(target_os = "macos") {
// TODO: macOS
+ // See how sysinfo does it... https://docs.rs/sysinfo/0.9.5/sysinfo/trait.ProcessExt.html
debug!("Sorry, macOS support is not implemented yet!");
}
else {