diff options
| author | Ondřej Surý <ondrej@sury.org> | 2011-02-18 09:50:58 +0100 | 
|---|---|---|
| committer | Ondřej Surý <ondrej@sury.org> | 2011-02-18 09:50:58 +0100 | 
| commit | c072558b90f1bbedc2022b0f30c8b1ac4712538e (patch) | |
| tree | 67767591619e4bd8111fb05fac185cde94fb7378 /src/pkg/runtime/debug.go | |
| parent | 5859517b767c99749a45651c15d4bae5520ebae8 (diff) | |
| download | golang-c072558b90f1bbedc2022b0f30c8b1ac4712538e.tar.gz | |
Imported Upstream version 2011.02.15upstream/2011.02.15
Diffstat (limited to 'src/pkg/runtime/debug.go')
| -rw-r--r-- | src/pkg/runtime/debug.go | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/pkg/runtime/debug.go b/src/pkg/runtime/debug.go index d09db1be6..5117e1a55 100644 --- a/src/pkg/runtime/debug.go +++ b/src/pkg/runtime/debug.go @@ -69,7 +69,8 @@ type MemStatsType struct {  	// Per-size allocation statistics.  	// Not locked during update; approximate. -	BySize [67]struct { +	// 61 is NumSizeClasses in the C code. +	BySize [61]struct {  		Size    uint32  		Mallocs uint64  		Frees   uint64 | 
