2021-08-24 04:37:44 +08:00
|
|
|
//go:build windows
|
2020-04-21 01:49:10 +08:00
|
|
|
|
|
|
|
|
package agent
|
|
|
|
|
|
|
|
|
|
import "os"
|
|
|
|
|
|
2023-06-09 16:24:43 +08:00
|
|
|
func watchForFlushSignal(_ chan os.Signal) {
|
2020-04-22 01:33:47 +08:00
|
|
|
// not supported
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-09 16:24:43 +08:00
|
|
|
func stopListeningForFlushSignal(_ chan os.Signal) {
|
2020-04-22 01:33:47 +08:00
|
|
|
// not supported
|
2020-04-21 01:49:10 +08:00
|
|
|
}
|