1
0
mirror of https://github.com/golang/go synced 2024-11-22 08:54:39 -07:00

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
This commit is contained in:
Rob Pike 2013-04-03 10:40:33 -07:00
parent 995eb2cf51
commit 91cb9995c3

View File

@ -201,6 +201,24 @@ would instead say:
i := int(int32(x)) i := int(int32(x))
</pre> </pre>
<h3 id="heap">Heap size on 64-bit architectures</h3>
<p>
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.)
</p>
<p>
On 32-bit architectures, the heap size has not changed.
</p>
<p>
<em>Updating</em>:
This change should have no effect on existing programs beyond allowing them
to run with larger heaps.
</p>
<h3 id="unicode">Unicode</h3> <h3 id="unicode">Unicode</h3>
<p> <p>