| 1 | //go:build !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows |
| 2 | |
| 3 | package mcplaunch |
| 4 | |
| 5 | // Unsupported platforms fail closed for syntactically valid owners. A stale |
| 6 | // lock may require manual cleanup there, but a waiter must never steal a live |
| 7 | // writer's lock when the OS offers no portable process-liveness probe. |
| 8 | func launchLockProcessAlive(pid int) bool { return pid > 0 } |
| 9 |