]> Cypherpunks repositories - gostls13.git/commitdiff
runtime/pprof: point to new docs about kernel bugs
authorRuss Cox <rsc@golang.org>
Wed, 6 Jan 2016 15:50:52 +0000 (10:50 -0500)
committerRuss Cox <rsc@golang.org>
Wed, 6 Jan 2016 17:59:35 +0000 (17:59 +0000)
Change-Id: I8ee338c1244fc4e2fb75deec752a7f83239c33ea
Reviewed-on: https://go-review.googlesource.com/18257
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/runtime/pprof/pprof.go

index 23fc85093b0224b513ca5d57e8a13036732f644f..d32b31578d0f311023e8953ec6567bb628507596 100644 (file)
@@ -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.