github.com/elves/elvish@v0.15.0/pkg/sys/tc.go (about)

     1  // +build !windows,!plan9
     2  
     3  package sys
     4  
     5  import (
     6  	"golang.org/x/sys/unix"
     7  )
     8  
     9  func Tcsetpgrp(fd int, pid int) error {
    10  	return unix.IoctlSetPointerInt(fd, unix.TIOCSPGRP, pid)
    11  }