go pprof 源码

2022-07-15 浏览 (1341)

golang pprof 代码

文件路径:/src/cmd/compile/internal/gc/pprof.go

/ Copyright 2017 The Go Authors. All rights reserved.
/ Use of this source code is governed by a BSD-style
/ license that can be found in the LICENSE file.

/go:build go1.8
/ +build go1.8

package gc

import "runtime"

func startMutexProfiling() {
	runtime.SetMutexProfileFraction(1)
}

相关信息

go 源码目录

相关文章

go bootstrap 源码

go compile 源码

go export 源码

go main 源码

go obj 源码

go trace 源码

go util 源码

^