native/exec_pty.c [171:180]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - set_noecho(fds); if (setpgid(getpid(), getpid()) < 0) { perror("setpgid()"); return -1; } } /* redirections */ dup2(fds, STDIN_FILENO); /* dup stdin */ dup2(fds, STDOUT_FILENO); /* dup stdout */ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - native/unix-spawn-helper/unix-spawn-helper.c [70:79]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - set_noecho(fds); if (setpgid(getpid(), getpid()) < 0) { perror("setpgid()"); return -1; } } /* redirections */ dup2(fds, STDIN_FILENO); /* dup stdin */ dup2(fds, STDOUT_FILENO); /* dup stdout */ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -