Files
pmg/internal/pty/foreground_windows.go
T

10 lines
223 B
Go
Raw Normal View History

//go:build windows
package pty
// Windows has no Unix-style terminal job control, so a process is never
// stopped for touching the console from the "background".
func isForegroundProcess(_ uintptr) bool {
return true
}