1 Star 2 Fork 1

孤爺仔/BaiduPCS-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cpu.go 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
konica 提交于 2018-04-23 18:42 . 继续优化..
// Package pcsdebug 调试包
package pcsdebug
import (
"context"
"fmt"
"os"
"runtime/pprof"
)
//StartCPUProfile 收集cpu信息
func StartCPUProfile(ctx context.Context, cpuProfile string) {
if cpuProfile != "" {
f, err := os.Create(cpuProfile)
if err != nil {
fmt.Fprintf(os.Stderr, "Can not create cpu profile output file: %s", err)
return
}
if err := pprof.StartCPUProfile(f); err != nil {
fmt.Fprintf(os.Stderr, "Can not start cpu profile: %s", err)
f.Close()
return
}
defer pprof.StopCPUProfile()
}
select {
case <-ctx.Done():
return
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/guyezi/BaiduPCS-Go.git
git@gitee.com:guyezi/BaiduPCS-Go.git
guyezi
BaiduPCS-Go
BaiduPCS-Go
v3.5.6

搜索帮助

0d507c66 1850385 C8b1a773 1850385