You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
978 B
Go
58 lines
978 B
Go
//go:build linux || darwin
|
|
// +build linux darwin
|
|
|
|
package proc
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
const timeFormat = "0102150405"
|
|
|
|
var done = make(chan struct{})
|
|
|
|
func init() {
|
|
go func() {
|
|
var profiler Stopper
|
|
|
|
// https://golang.org/pkg/os/signal/#Notify
|
|
signals := make(chan os.Signal, 1)
|
|
signal.Notify(signals, syscall.SIGUSR1, syscall.SIGUSR2, syscall.SIGTERM)
|
|
|
|
for {
|
|
v := <-signals
|
|
switch v {
|
|
case syscall.SIGUSR1:
|
|
dumpGoroutines()
|
|
case syscall.SIGUSR2:
|
|
if profiler == nil {
|
|
profiler = StartProfile()
|
|
} else {
|
|
profiler.Stop()
|
|
profiler = nil
|
|
}
|
|
case syscall.SIGTERM:
|
|
select {
|
|
case <-done:
|
|
// already closed
|
|
default:
|
|
close(done)
|
|
}
|
|
|
|
gracefulStop(signals)
|
|
default:
|
|
logx.Error("Got unregistered signal:", v)
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
// Done returns the channel that notifies the process quitting.
|
|
func Done() <-chan struct{} {
|
|
return done
|
|
}
|