tc.go 239 B

123456789101112
  1. //go:build !windows && !plan9
  2. package eunix
  3. import (
  4. "golang.org/x/sys/unix"
  5. )
  6. // Tcsetpgrp sets the terminal foreground process group.
  7. func Tcsetpgrp(fd int, pid int) error {
  8. return unix.IoctlSetPointerInt(fd, unix.TIOCSPGRP, pid)
  9. }