aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/pprof/pprof.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2016-01-06 10:50:52 -0500
committerRuss Cox <rsc@golang.org>2016-01-06 17:59:35 +0000
commit13ba968d750f0bbf8cb5214c366ef98adada1a85 (patch)
tree6c9c41da9418be447c73edb8bf66976f298fe87b /src/runtime/pprof/pprof.go
parent6866f5e1437eb410706c76109012abb2bca7e2be (diff)
downloadgo-13ba968d750f0bbf8cb5214c366ef98adada1a85.tar.xz
runtime/pprof: point to new docs about kernel bugs
Change-Id: I8ee338c1244fc4e2fb75deec752a7f83239c33ea Reviewed-on: https://go-review.googlesource.com/18257 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/runtime/pprof/pprof.go')
-rw-r--r--src/runtime/pprof/pprof.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/pprof/pprof.go b/src/runtime/pprof/pprof.go
index 23fc85093b..d32b31578d 100644
--- a/src/runtime/pprof/pprof.go
+++ b/src/runtime/pprof/pprof.go
@@ -20,8 +20,8 @@ import (
"text/tabwriter"
)
-// BUG(rsc): Profiles are incomplete and inaccurate on NetBSD and OS X.
-// See https://golang.org/issue/6047 for details.
+// BUG(rsc): Profiles are only as good as the kernel support used to generate them.
+// See https://golang.org/issue/13841 for details about known problems.
// A Profile is a collection of stack traces showing the call sequences
// that led to instances of a particular event, such as allocation.