diff options
| author | Russ Cox <rsc@golang.org> | 2017-02-17 00:17:26 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2017-02-24 20:45:21 +0000 |
| commit | 0b8c983ece56b63c433a65fd3de6a411cb2aac87 (patch) | |
| tree | 046c74afa7c9bce69a4566e9dc02e04f5fe17534 /src/cmd/trace/pprof.go | |
| parent | cbab65fdfa1cf74f65a480de0447388286169f26 (diff) | |
| download | go-0b8c983ece56b63c433a65fd3de6a411cb2aac87.tar.xz | |
runtime/pprof/internal/profile: move internal/pprof/profile here
Nothing needs internal/pprof anymore except the runtime/pprof tests.
Move the package here to prevent new dependencies.
Change-Id: Ia119af91cc2b980e0fa03a15f46f69d7f71d2926
Reviewed-on: https://go-review.googlesource.com/37165
Run-TryBot: Russ Cox <rsc@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Michael Matloob <matloob@golang.org>
Diffstat (limited to 'src/cmd/trace/pprof.go')
| -rw-r--r-- | src/cmd/trace/pprof.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cmd/trace/pprof.go b/src/cmd/trace/pprof.go index dea3a749fc..40803ac5f9 100644 --- a/src/cmd/trace/pprof.go +++ b/src/cmd/trace/pprof.go @@ -9,13 +9,14 @@ package main import ( "bufio" "fmt" - "internal/pprof/profile" "internal/trace" "io" "io/ioutil" "net/http" "os" "os/exec" + + "github.com/google/pprof/profile" ) func init() { |
