x/tools/cmd/heapdump: add empty heapdump command

This change creates a place where we can start building
the 'heapdump' heap viewer and analyzer

Updates golang/go#16410

Change-Id: I216e13f1ceb6790bf492cfc8cbcc4f19f12b0b9e
Reviewed-on: https://go-review.googlesource.com/25085
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Michael Matloob 2016-07-20 12:26:50 -04:00
parent d4a8e583a1
commit 5dbb806c12
1 changed files with 9 additions and 0 deletions

9
cmd/heapdump/main.go Normal file
View File

@ -0,0 +1,9 @@
// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// heapdump is a tool for inspecting and analyzing Go heap dumps.
package main
func main() {
}