let child_process = Command::new("some_program")
.spawn()
How to send a signal like for example SIGSTOP to that child process?
let child_process = Command::new("some_program")
.spawn()
How to send a signal like for example SIGSTOP to that child process?
Thanks!
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.