14 lines
196 B
Go
Raw Normal View History

2018-08-08 17:03:15 +02:00
// +build windows
package metrics
import (
"syscall"
)
const (
// DefaultSignal is used with DefaultInmemSignal
// Windows has no SIGUSR1, use SIGBREAK
DefaultSignal = syscall.Signal(21)
)