diff options
Diffstat (limited to 'src/runtime/mcache.go')
| -rw-r--r-- | src/runtime/mcache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/mcache.go b/src/runtime/mcache.go index 9ff4259ce9..14748a43f1 100644 --- a/src/runtime/mcache.go +++ b/src/runtime/mcache.go @@ -12,7 +12,7 @@ type mcache struct { // The following members are accessed on every malloc, // so they are grouped here for better caching. next_sample int32 // trigger heap sample after allocating this many bytes - local_cachealloc intptr // bytes allocated (or freed) from cache since last lock of heap + local_cachealloc intptr // bytes allocated from cache since last lock of heap // Allocator cache for tiny objects w/o pointers. // See "Tiny allocator" comment in malloc.go. tiny unsafe.Pointer |
