runtime/pprof: add WriteHeapProfile

Fixes: #3071
Этот коммит содержится в:
Miguel Angel 2022-08-15 21:20:36 -04:00 коммит произвёл Ron Evans
родитель a0407be7b7
коммит d0808c93f6

Просмотреть файл

@ -20,6 +20,10 @@ func StartCPUProfile(w io.Writer) error {
func StopCPUProfile() { func StopCPUProfile() {
} }
func WriteHeapProfile(w io.Writer) error {
return nil
}
func Lookup(name string) *Profile { func Lookup(name string) *Profile {
return nil return nil
} }