aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/internal/pprof/plugin
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2016-10-31 12:07:13 -0400
committerRuss Cox <rsc@golang.org>2016-11-02 19:09:11 +0000
commit682ffae6db749ba63df4b8bc1739974346bb14d7 (patch)
tree4193c881e55f71b896a23638ac9cc52ab41f70be /src/cmd/internal/pprof/plugin
parent53cc69170ae1a96163d3b6c14467e85dc8aa7266 (diff)
downloadgo-682ffae6db749ba63df4b8bc1739974346bb14d7.tar.xz
internal/pprof/profile: new package, moved from cmd/internal/pprof/profile
This allows both the runtime and the cmd/pprof code to use the package, just like we do for internal/trace. Change-Id: I7606977284e1def36c9647354c58e7c1e93dba6b Reviewed-on: https://go-review.googlesource.com/32452 Run-TryBot: Russ Cox <rsc@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src/cmd/internal/pprof/plugin')
-rw-r--r--src/cmd/internal/pprof/plugin/plugin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/internal/pprof/plugin/plugin.go b/src/cmd/internal/pprof/plugin/plugin.go
index d5025d5517..ff1e8adfaf 100644
--- a/src/cmd/internal/pprof/plugin/plugin.go
+++ b/src/cmd/internal/pprof/plugin/plugin.go
@@ -13,7 +13,7 @@ import (
"strings"
"time"
- "cmd/internal/pprof/profile"
+ "internal/pprof/profile"
)
// A FlagSet creates and parses command-line flags.