mirror of
https://github.com/EchoVault/SugarDB.git
synced 2025-11-02 12:14:15 +08:00
14 lines
196 B
Go
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)
|
|
)
|