From 854e4bd544d89d1033597ca242fb898e225cd3a7 Mon Sep 17 00:00:00 2001 From: Sigilante <57601680+sigilante@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:39:49 -0600 Subject: [PATCH] Recomment debugging printfs --- rust/ares/src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rust/ares/src/main.rs b/rust/ares/src/main.rs index b88ca97..f5b1cb2 100644 --- a/rust/ares/src/main.rs +++ b/rust/ares/src/main.rs @@ -5,10 +5,10 @@ use std::io; fn main() -> io::Result<()> { // debug - eprintln!("serf: pid {}", std::process::id()); - if unsafe { libc::kill(std::process::id() as i32, libc::SIGSTOP) } != 0 { - panic!("Could not stop ourselves."); - }; + // eprintln!("serf: pid {}", std::process::id()); + // if unsafe { libc::kill(std::process::id() as i32, libc::SIGSTOP) } != 0 { + // panic!("Could not stop ourselves."); + // }; let filename = env::args().nth(1).expect("Must provide input filename");