diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-15 18:55:09 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-02-15 18:55:09 +0000 |
commit | cec17acdcfa2d37110835686b803a64dadbe5ed9 (patch) | |
tree | 69367e678dd8ce0bf0495ccdf1a1712913949390 /libgo | |
parent | e26fddfae4537b20a6a755c6e911f431d11212df (diff) | |
download | gcc-cec17acdcfa2d37110835686b803a64dadbe5ed9.tar.gz |
runtime: Do not reserve huge amount of swap on 32 bit architectures.
The mmap() call which reserves the arena should have MAP_NORESERVE
flag as in typical cases this memory will never be (fully) needed.
This matters in environments which do not do Linux style memory
overcommit, such as OpenIndiana/OpenSolaris/Solaris.
The MAP_NORESERVE flag does not exist on all operating systems
(for example FreeBSD). Therefore we define it to zero value in
case it does not exist.
Fixes issue 21.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@196088 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rw-r--r-- | libgo/runtime/mem.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libgo/runtime/mem.c b/libgo/runtime/mem.c index e70694cf0ed..e606bdd4d24 100644 --- a/libgo/runtime/mem.c +++ b/libgo/runtime/mem.c @@ -18,6 +18,10 @@ #endif #endif +#ifndef MAP_NORESERVE +#define MAP_NORESERVE 0 +#endif + #ifdef USE_DEV_ZERO static int dev_zero = -1; #endif @@ -134,7 +138,11 @@ runtime_SysReserve(void *v, uintptr n) return v; } - p = runtime_mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE, fd, 0); + // Use the MAP_NORESERVE mmap() flag here because typically most of + // this reservation will never be used. It does not make sense + // reserve a huge amount of unneeded swap space. This is important on + // systems which do not overcommit memory by default. + p = runtime_mmap(v, n, PROT_NONE, MAP_ANON|MAP_PRIVATE|MAP_NORESERVE, fd, 0); if(p == MAP_FAILED) return nil; return p; |