From: Hana (Hyang-Ah) Kim Date: Wed, 18 Jul 2018 07:06:21 +0000 (-0400) Subject: doc/go1.11: update runtime/pprof change note X-Git-Tag: go1.11beta2~52 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=311ec41b5a394e53550c3feed2164b8f9930b5be;p=gostls13.git doc/go1.11: update runtime/pprof change note Mention the change in the behavior of go test -memprofile. Change-Id: I0384f058298bd8fcfd2d97996464d46b4e419938 Reviewed-on: https://go-review.googlesource.com/124656 Reviewed-by: Ian Lance Taylor --- diff --git a/doc/go1.11.html b/doc/go1.11.html index 79bc1a4fe8..7b16e121e2 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -661,8 +661,9 @@ func f(v interface{}) { This release adds a new "allocs" profile type that profiles total number of bytes allocated since the program began (including garbage-collected bytes). This is identical to the - existing "heap" profile viewed in -alloc_space - mode. + existing "heap" profile viewed in -alloc_space mode. + Now go test -memprofile=... reports an "allocs" profile + instead of "heap" profile.