diff options
Diffstat (limited to 'src/pkg/malloc/malloc.go')
-rw-r--r-- | src/pkg/malloc/malloc.go | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pkg/malloc/malloc.go b/src/pkg/malloc/malloc.go index ba15f04ab..c66b6237d 100644 --- a/src/pkg/malloc/malloc.go +++ b/src/pkg/malloc/malloc.go @@ -12,14 +12,14 @@ package malloc type Stats struct { - Alloc uint64; - Sys uint64; - Stacks uint64; - InusePages uint64; - NextGC uint64; - Lookups uint64; - Mallocs uint64; - EnableGC bool; + Alloc uint64 + Sys uint64 + Stacks uint64 + InusePages uint64 + NextGC uint64 + Lookups uint64 + Mallocs uint64 + EnableGC bool } func Alloc(uintptr) *byte |