From e17281b39779c18fc73779c81a3741b05ea85485 Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Thu, 30 May 2013 17:09:58 +0400 Subject: runtime: rename mheap.maps to mheap.spans as was dicussed in cl/9791044 R=golang-dev, r CC=golang-dev https://golang.org/cl/9853046 --- src/pkg/runtime/malloc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/runtime/malloc.h') diff --git a/src/pkg/runtime/malloc.h b/src/pkg/runtime/malloc.h index c668183c96..0d22075bea 100644 --- a/src/pkg/runtime/malloc.h +++ b/src/pkg/runtime/malloc.h @@ -411,7 +411,7 @@ struct MHeap uint32 nspancap; // span lookup - MSpan** map; + MSpan** spans; uintptr spans_mapped; // range of addresses we might see in the heap -- cgit v1.3-5-g9baa