1
0
mirror of https://github.com/restic/restic.git synced 2025-04-30 14:10:45 +00:00

13 lines
190 B
Go
Raw Normal View History

// +build darwin dragonfly freebsd netbsd openbsd
package progress
import (
"os/signal"
"syscall"
)
func setupSignals() {
signal.Notify(signals.ch, syscall.SIGINFO, syscall.SIGUSR1)
}