summaryrefslogtreecommitdiff
path: root/internal/debug/signals_disabled.go
blob: 2c9b65edce738259b9f218a981ebe4b2f68a1292 (plain)
1
2
3
4
5
6
7
8
9
10
//go:build !debugsignals && !windows

package debug

// SetDebugDir sets the directory where debug output files will be written.
// In production builds, runtime signal diagnostics are disabled.
func SetDebugDir(dir string) {}

// InitSignalHandlers is a no-op in production builds.
func InitSignalHandlers() {}