From 5dbb806c12d692c3ee68107c8043675ace619d94 Mon Sep 17 00:00:00 2001 From: Michael Matloob Date: Wed, 20 Jul 2016 12:26:50 -0400 Subject: [PATCH] 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 --- cmd/heapdump/main.go | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 cmd/heapdump/main.go diff --git a/cmd/heapdump/main.go b/cmd/heapdump/main.go new file mode 100644 index 00000000..c5ede8f6 --- /dev/null +++ b/cmd/heapdump/main.go @@ -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() { +}