From: Rob Pike Date: Wed, 3 Apr 2013 17:40:33 +0000 (-0700) Subject: doc/go1.1.html: state that the heap is bigger on 64-bit machines X-Git-Tag: go1.1rc2~204 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=91cb9995c390cac1f8121f075045ad94c0086fd7;p=gostls13.git 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 --- 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