Files
kjol/tools/tsgo/cmd/tsgo/isprocessalive_other.go
2026-07-09 16:50:43 -04:00

10 lines
178 B
Go

//go:build !unix && !windows
package main
const processAliveSupported = false
func isProcessAlive(pid int) bool {
panic("isProcessAlive is not supported on this platform")
}