mirror of https://github.com/restic/restic.git
23 lines
372 B
Go
23 lines
372 B
Go
// +build !windows,!darwin,!freebsd,!netbsd,!openbsd,!dragonfly,!solaris
|
|
|
|
package restic
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/restic/restic/internal/debug"
|
|
)
|
|
|
|
func init() {
|
|
c := make(chan os.Signal, 1)
|
|
signal.Notify(c, syscall.SIGUSR1)
|
|
go func() {
|
|
for s := range c {
|
|
debug.Log("Signal received: %v\n", s)
|
|
forceUpdateProgress <- true
|
|
}
|
|
}()
|
|
}
|