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