orphans_other.go 365 B

123456789
  1. //go:build !linux
  2. package mtproto
  3. // killStrayMtgProcesses is a no-op off Linux. On Windows the kill-on-exit job
  4. // object already terminates mtg together with the panel (see
  5. // attachChildLifetime), so orphans do not arise there; other platforms are not
  6. // a supported deployment target for the mtg sidecar.
  7. func killStrayMtgProcesses(_ string) int { return 0 }