mirror of
https://github.com/restic/restic.git
synced 2025-12-11 18:47:50 +00:00
PR #5358 reintroduced a version of the TIOCGPGRP ioctl call that works on all Unix platforms except Linux, due to a bug/inconsistency in x/sys/unix. This commit fixes that by introducing termstatus.Tcgetpgrp. It also introduces termstatus.Getpgrp and termstatus.Tcsetpgrp to deal with the different signature of unix.Getpgrp in Solaris vs. all other Unix platforms and an int-overflowing constant on AIX, so that some AIX/Solaris-specific code can be removed elsewhere and foreground/background detection is done the same everywhere except on Windows.
11 lines
309 B
Go
11 lines
309 B
Go
package termstatus
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
func Tcsetpgrp(fd int, pid int) error {
|
|
// The second argument to IoctlSetPointerInt has type int on AIX,
|
|
// but the constant overflows 64-bit int, hence the two-step cast.
|
|
req := uint(unix.TIOCSPGRP)
|
|
return unix.IoctlSetPointerInt(fd, int(req), pid)
|
|
}
|