From 91cb9995c390cac1f8121f075045ad94c0086fd7 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 3 Apr 2013 10:40:33 -0700 Subject: [PATCH] doc/go1.1.html: state that the heap is bigger on 64-bit machines Be deliberately vague, since the precise details should not be depended upon. Fixes #5155. R=golang-dev, gri, adg CC=golang-dev https://golang.org/cl/8283044 --- doc/go1.1.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/doc/go1.1.html b/doc/go1.1.html index dfd9e65340..578d6e901c 100644 --- a/doc/go1.1.html +++ b/doc/go1.1.html @@ -201,6 +201,24 @@ would instead say: i := int(int32(x)) +

Heap size on 64-bit architectures

+ +

+On 64-bit architectures only, the maximum heap size has been enlarged substantially, +from a few gigabytes to several tens of gigabytes. +(The exact details depend on the system and may change.) +

+ +

+On 32-bit architectures, the heap size has not changed. +

+ +

+Updating: +This change should have no effect on existing programs beyond allowing them +to run with larger heaps. +

+

Unicode

-- 2.50.0