mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 09:04:52 +01:00
25 lines
456 B
Go
25 lines
456 B
Go
//go:build darwin || freebsd || netbsd || dragonfly || openbsd
|
|
// +build darwin freebsd netbsd dragonfly openbsd
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/rclone/rclone/fs/accounting"
|
|
)
|
|
|
|
// 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())
|
|
}
|
|
}()
|
|
}
|