2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-24 12:39:02 +00:00
restic/internal/ui/progress/signals_bsd.go

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)
}