mirror of
https://github.com/golang/go
synced 2024-11-18 19:34:41 -07:00
5dbb806c12
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>
10 lines
256 B
Go
10 lines
256 B
Go
// 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() {
|
|
}
|