aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2015-08-04 09:11:06 +0200
committerDmitry Vyukov <dvyukov@google.com>2015-08-05 08:13:15 +0000
commitde641ef0c46d53c36949fdcd773d5b4f27174a57 (patch)
tree806940bcabeef5c0afdbbcbe92586c88c9f41055
parent2a60d77059201c9f1f09cb4885f690859d7bc643 (diff)
downloadgo-de641ef0c46d53c36949fdcd773d5b4f27174a57.tar.gz
go-de641ef0c46d53c36949fdcd773d5b4f27174a57.zip
doc/go1.5.html: update references to runtime/trace package
Tracing functionality was moved from runtime/pprof to runtime/trace. Change-Id: I694e0f209d043c7ffecb113f1825175bf963dde3 Reviewed-on: https://go-review.googlesource.com/13074 Reviewed-by: Rob Pike <r@golang.org>
-rw-r--r--doc/go1.5.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/go1.5.html b/doc/go1.5.html
index 3197fd8e90..e449b47802 100644
--- a/doc/go1.5.html
+++ b/doc/go1.5.html
@@ -1222,14 +1222,14 @@ adds new <a href="/pkg/os/signal/#Ignore"><code>Ignore</code></a> and
<li>
The <a href="/pkg/runtime/"><code>runtime</code></a>,
-<a href="/pkg/runtime/pprof/"><code>runtime/pprof</code></a>,
+<a href="/pkg/runtime/pprof/"><code>runtime/trace</code></a>,
and <a href="/pkg/net/http/pprof/"><code>net/http/pprof</code></a> packages
each have new functions to support the tracing facilities described above:
<a href="/pkg/runtime/#ReadTrace"><code>ReadTrace</code></a>,
<a href="/pkg/runtime/#StartTrace"><code>StartTrace</code></a>,
<a href="/pkg/runtime/#StopTrace"><code>StopTrace</code></a>,
-<a href="/pkg/runtime/pprof/#StartTrace"><code>StartTrace</code></a>,
-<a href="/pkg/runtime/pprof/#StopTrace"><code>StopTrace</code></a>, and
+<a href="/pkg/runtime/trace/#Start"><code>Start</code></a>,
+<a href="/pkg/runtime/trace/#Stop"><code>Stop</code></a>, and
<a href="/pkg/net/http/pprof/#Trace"><code>Trace</code></a>.
See the respective documentation for details.
</li>