Skip to content
Snippets Groups Projects
Commit 82c806c7 authored by AdminXVII's avatar AdminXVII
Browse files

Don't set a new pgrp if the terminal already controls the tty

parent 9a331a13
No related branches found
No related tags found
No related merge requests found
...@@ -132,6 +132,9 @@ fn parse_args() -> CommandLineArgs { ...@@ -132,6 +132,9 @@ fn parse_args() -> CommandLineArgs {
fn set_unique_pid() -> nix::Result<()> { fn set_unique_pid() -> nix::Result<()> {
let pgid = unistd::getpid(); let pgid = unistd::getpid();
if pgid == unistd::tcgetpgrp(nix::libc::STDIN_FILENO)? {
return Ok(());
}
unistd::setpgid(pgid, pgid)?; unistd::setpgid(pgid, pgid)?;
unsafe { signal::signal(Signal::SIGTTOU, SigHandler::SigIgn) }?; unsafe { signal::signal(Signal::SIGTTOU, SigHandler::SigIgn) }?;
unistd::tcsetpgrp(nix::libc::STDIN_FILENO, pgid) unistd::tcsetpgrp(nix::libc::STDIN_FILENO, pgid)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment