2016-10-22 15:21:28 +08:00
|
|
|
// Accounting and limiting reader
|
2016-10-31 03:20:16 +08:00
|
|
|
// Non-unix specific functions.
|
2016-10-22 15:21:28 +08:00
|
|
|
|
2021-09-09 20:25:25 +08:00
|
|
|
//go:build !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris
|
2016-10-22 15:21:28 +08:00
|
|
|
|
2018-01-13 00:30:54 +08:00
|
|
|
package accounting
|
2016-10-22 15:21:28 +08:00
|
|
|
|
2016-10-31 03:20:16 +08:00
|
|
|
// startSignalHandler() is Unix specific and does nothing under non-Unix
|
2016-10-22 15:21:28 +08:00
|
|
|
// platforms.
|
2020-07-05 00:20:54 +08:00
|
|
|
func (tb *tokenBucket) startSignalHandler() {}
|