forked from TrueCloudLab/rclone
Sending rclone a SIGUSR2 signal will toggle the limiter between off and the limit set with the --bwlimit command-line option.
10 lines
212 B
Go
10 lines
212 B
Go
// Accounting and limiting reader
|
|
// Windows specific functions.
|
|
|
|
// +build windows
|
|
|
|
package fs
|
|
|
|
// startSignalHandler() is Unix specific and does nothing under windows
|
|
// platforms.
|
|
func startSignalHandler() {}
|