github.com/hashicorp/go-metrics@v0.5.3/const_windows.go (about) 1 // +build windows 2 3 package metrics 4 5 import ( 6 "syscall" 7 ) 8 9 const ( 10 // DefaultSignal is used with DefaultInmemSignal 11 // Windows has no SIGUSR1, use SIGBREAK 12 DefaultSignal = syscall.Signal(21) 13 )