bottin/vendor/github.com/armon/go-metrics/const_windows.go
Simon Beck 22a8897e72 Vendor
2022-02-08 20:24:59 +01:00

14 lines
196 B
Go

// +build windows
package metrics
import (
"syscall"
)
const (
// DefaultSignal is used with DefaultInmemSignal
// Windows has no SIGUSR1, use SIGBREAK
DefaultSignal = syscall.Signal(21)
)