]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.5.html: update references to runtime/trace package
authorDmitry Vyukov <dvyukov@google.com>
Tue, 4 Aug 2015 07:11:06 +0000 (09:11 +0200)
committerDmitry Vyukov <dvyukov@google.com>
Wed, 5 Aug 2015 08:13:15 +0000 (08:13 +0000)
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>
doc/go1.5.html

index 3197fd8e90a9b7c00122ee3cf9f201c2cd8994f3..e449b47802d79f7dd4379fc9cbc6e48da07d9392 100644 (file)
@@ -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>