Files
monibuca/server_signal_windows.go
2026-04-08 23:15:03 +08:00

13 lines
336 B
Go

//go:build windows
package m7s
import "os"
// setupDumpSignal returns a channel that never receives on Windows
// (SIGUSR1 is not available). On-demand goroutine dumps must be triggered
// via the CPU watchdog automatic threshold instead.
func setupDumpSignal() (<-chan os.Signal, func()) {
return make(chan os.Signal), func() {}
}