2017-12-08 08:45:10 +08:00
|
|
|
// +build !windows,!plan9
|
2017-12-03 02:52:57 +08:00
|
|
|
|
|
|
|
package eval
|
|
|
|
|
|
|
|
import (
|
2018-11-18 00:53:42 +08:00
|
|
|
"os"
|
2017-12-03 02:52:57 +08:00
|
|
|
"os/signal"
|
|
|
|
"syscall"
|
|
|
|
|
2019-12-24 04:00:59 +08:00
|
|
|
"github.com/elves/elvish/pkg/sys"
|
2017-12-03 02:52:57 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Process control functions in Unix.
|
|
|
|
|
|
|
|
func putSelfInFg() error {
|
2018-11-18 00:53:42 +08:00
|
|
|
if !sys.IsATTY(os.Stdin) {
|
|
|
|
return nil
|
|
|
|
}
|
2018-09-29 06:27:03 +08:00
|
|
|
// If Elvish is in the background, the tcsetpgrp call below will either fail
|
|
|
|
// (if the process is in an orphaned process group) or stop the process.
|
|
|
|
// Ignoring TTOU fixes that.
|
|
|
|
signal.Ignore(syscall.SIGTTOU)
|
|
|
|
defer signal.Reset(syscall.SIGTTOU)
|
2017-12-03 02:52:57 +08:00
|
|
|
return sys.Tcsetpgrp(0, syscall.Getpgrp())
|
|
|
|
}
|
2017-12-04 04:46:08 +08:00
|
|
|
|
|
|
|
func makeSysProcAttr(bg bool) *syscall.SysProcAttr {
|
|
|
|
return &syscall.SysProcAttr{Setpgid: bg}
|
|
|
|
}
|