summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/armon/go-metrics/const_windows.go
blob: 38136af3e423725739d89cd79653733deab4f557 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build windows

package metrics

import (
	"syscall"
)

const (
	// DefaultSignal is used with DefaultInmemSignal
	// Windows has no SIGUSR1, use SIGBREAK
	DefaultSignal = syscall.Signal(21)
)