bb751535d3
Close #2497.
12 lines
200 B
Go
12 lines
200 B
Go
//go:build windows
|
|
|
|
package server
|
|
|
|
import "syscall"
|
|
|
|
const (
|
|
// Doesn't really matter, Windows can't do it.
|
|
sighup = syscall.SIGHUP
|
|
sigusr1 = syscall.Signal(0xa)
|
|
sigusr2 = syscall.Signal(0xc)
|
|
)
|