1
0
mirror of https://github.com/restic/restic.git synced 2025-06-07 20:38:29 +00:00

13 lines
147 B
Go
Raw Normal View History

// +build linux solaris
package progress
import (
"os/signal"
"syscall"
)
func setupSignals() {
signal.Notify(signals.ch, syscall.SIGUSR1)
}