rclone/cmd/siginfo_darwin.go

24 lines
359 B
Go
Raw Normal View History

2018-05-13 20:24:56 +02:00
//+build darwin
package cmd
import (
"log"
"os"
"os/signal"
"syscall"
"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 {
log.Printf("%v\n", accounting.GlobalStats())
2018-05-13 20:24:56 +02:00
}
}()
}