commit | 102274a30e5d2df4d13d5fad50c484f78904236a | [log] [tgz] |
---|---|---|
author | Russ Cox <rsc@golang.org> | Fri Feb 24 15:28:51 2012 -0500 |
committer | Russ Cox <rsc@golang.org> | Fri Feb 24 15:28:51 2012 -0500 |
tree | 20384f9d94d1d7c9e934014c7d219c5be07c4aed | |
parent | d8ccebfffa40b016d9e90713ce0430c37d98175c [diff] [blame] |
runtime: size arena to fit in virtual address space limit For Brad. Now FreeBSD/386 binaries run on nearlyfreespeech.net. Fixes #2302. R=golang-dev, r CC=golang-dev https://golang.org/cl/5700060
diff --git a/src/pkg/runtime/runtime.h b/src/pkg/runtime/runtime.h index 1f4407a..3b0f505 100644 --- a/src/pkg/runtime/runtime.h +++ b/src/pkg/runtime/runtime.h
@@ -729,3 +729,4 @@ void runtime·ifaceE2I(struct InterfaceType*, Eface, Iface*); +uintptr runtime·memlimit(void);