mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 09:35:26 +01:00
12 lines
383 B
Go
12 lines
383 B
Go
// Accounting and limiting reader
|
|
// Non-unix specific functions.
|
|
|
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
|
// +build !darwin,!dragonfly,!freebsd,!linux,!netbsd,!openbsd,!solaris
|
|
|
|
package accounting
|
|
|
|
// startSignalHandler() is Unix specific and does nothing under non-Unix
|
|
// platforms.
|
|
func (tb *tokenBucket) startSignalHandler() {}
|