rclone/cmd/siginfo_bsd.go

24 lines
434 B
Go
Raw Normal View History

//go:build darwin || freebsd || netbsd || dragonfly || openbsd
2018-05-13 20:24:56 +02:00
package cmd
import (
"os"
"os/signal"
"syscall"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/accounting"
2018-05-13 20:24:56 +02:00
)
// SigInfoHandler creates SigInfo handler
func SigInfoHandler() {
signals := make(chan os.Signal, 1)
signal.Notify(signals, syscall.SIGINFO)
go func() {
for range signals {
fs.Printf(nil, "%v\n", accounting.GlobalStats())
2018-05-13 20:24:56 +02:00
}
}()
}