aboutsummaryrefslogtreecommitdiff
path: root/api/go1.5.txt
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2015-07-22 13:09:26 +0200
committerRuss Cox <rsc@golang.org>2015-07-22 15:47:16 +0000
commitae1ea2aa94b366107f4f92a591d102fd32ad86ae (patch)
tree762c1f7f9399e385088feff953f271f44809ca30 /api/go1.5.txt
parent1a99ba55df902a2657d1ccfc52a60024c22dba98 (diff)
downloadgo-ae1ea2aa94b366107f4f92a591d102fd32ad86ae.tar.gz
go-ae1ea2aa94b366107f4f92a591d102fd32ad86ae.zip
runtime/trace: add new package
Move tracing functions from runtime/pprof to the new runtime/trace package. Fixes #9710 Change-Id: I718bcb2ae3e5959d9f72cab5e6708289e5c8ebd5 Reviewed-on: https://go-review.googlesource.com/12511 Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'api/go1.5.txt')
-rw-r--r--api/go1.5.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/go1.5.txt b/api/go1.5.txt
index 069a87649b..72e4ad9ae7 100644
--- a/api/go1.5.txt
+++ b/api/go1.5.txt
@@ -874,8 +874,8 @@ pkg reflect, func FuncOf([]Type, []Type, bool) Type
pkg runtime, func ReadTrace() []uint8
pkg runtime, func StartTrace() error
pkg runtime, func StopTrace()
-pkg runtime/pprof, func StartTrace(io.Writer) error
-pkg runtime/pprof, func StopTrace()
+pkg runtime/trace, func Start(io.Writer) error
+pkg runtime/trace, func Stop()
pkg strings, func Compare(string, string) int
pkg strings, func LastIndexByte(string, uint8) int
pkg strings, method (*Reader) Size() int64