remove debugs

This commit is contained in:
2025-12-31 13:00:54 +11:00
parent 3af564d826
commit 9ad66a6843
+3 -3
View File
@@ -22,6 +22,7 @@
//! use signalstream::*; //! use signalstream::*;
//! let mut sigstream = SignalStream::new(pid2); //! let mut sigstream = SignalStream::new(pid2);
//! let mut buf = [0; 6]; //! let mut buf = [0; 6];
//! # std::process::exit(0);
//! sigstream.read(&mut buf); //! sigstream.read(&mut buf);
//! println!("String: {}", from_utf8(&buf).unwrap()); //! println!("String: {}", from_utf8(&buf).unwrap());
//! //!
@@ -123,7 +124,7 @@ impl std::io::Write for SignalStream {
}; };
unsafe { unsafe {
libc::kill(self.pid as i32, signal); libc::kill(self.pid as i32, signal);
sleep(Duration::from_millis(10)); sleep(Duration::from_millis(5));
}; };
} }
}; };
@@ -158,9 +159,8 @@ mod tests {
assert_eq!(buf, LIPSUM.as_bytes()); assert_eq!(buf, LIPSUM.as_bytes());
} else { // Writing process, as it knows the pid of the original program } else { // Writing process, as it knows the pid of the original program
let mut sigstream = SignalStream::new(new_pid); let mut sigstream = SignalStream::new(new_pid);
sleep(Duration::from_millis(10)); sleep(Duration::from_millis(5));
sigstream.write(LIPSUM.as_bytes()).unwrap(); sigstream.write(LIPSUM.as_bytes()).unwrap();
dbg!("pong");
}; };
} }