示例#1
0
func sigh() {
	for s := range signal.Incoming {
		fmt.Printf(term.FgRed+"[%v] sig: %s\n"+term.Reset, ds(), s)
		fmt.Println(prof.String())
		os.Exit(0)
	}
}
示例#2
0
文件: dump.go 项目: fedgrant/tonika
func (c *Core) marshalProfJSON() string { return misc.JSONQuote(prof.String()) }
示例#3
0
文件: dump.go 项目: fedgrant/tonika
func (c *Core) dumpProf() string { return prof.String() }
示例#4
0
func profLoop() {
	for {
		<-alarmOnce(5e9)
		fmt.Println(prof.String())
	}
}