diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-31 18:25:49 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-31 18:25:49 +0100 |
commit | 35cf8a85ed87b70db021d3b8a5026cec9d9094dd (patch) | |
tree | 53726845ce2860fdc8ea2d0244413e2933f29955 | |
parent | 8c0727af63198661c0ae3641a9d66609021754a7 (diff) | |
download | glibc-35cf8a85ed87b70db021d3b8a5026cec9d9094dd.zip glibc-35cf8a85ed87b70db021d3b8a5026cec9d9094dd.tar.gz glibc-35cf8a85ed87b70db021d3b8a5026cec9d9094dd.tar.bz2 |
hurd: Bump BRK_START to 0x20000000
By nowadays uses, 256MiB is not that large for the program+libraries.
Let's push the heap further to leave room for e.g. clang.
-rw-r--r-- | sysdeps/mach/hurd/i386/vm_param.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/i386/vm_param.h b/sysdeps/mach/hurd/i386/vm_param.h index 5869b40..d3a1399 100644 --- a/sysdeps/mach/hurd/i386/vm_param.h +++ b/sysdeps/mach/hurd/i386/vm_param.h @@ -19,6 +19,6 @@ #define _I386_VM_PARAM_H /* Arbitrary start of the brk. This is after usual binary and library mappings. */ -#define BRK_START 0x10000000 +#define BRK_START 0x20000000 #endif /* i386/vm_param.h */ |