X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmalloc%2Fmalloc.c;h=1a6d1493291c7ed2d816687d92d100b78c972137;hb=c82f53f67cb256e0096c8649235028b6613b9a22;hp=88a31ae4f5b0293d3afb73c931f6d828f9d891c9;hpb=afd209deb7d3bfc9cc31713e2cb8f22693ca6fae;p=musl diff --git a/src/malloc/malloc.c b/src/malloc/malloc.c index 88a31ae4..1a6d1493 100644 --- a/src/malloc/malloc.c +++ b/src/malloc/malloc.c @@ -196,7 +196,11 @@ static int init_malloc(size_t n) return 0; } - mal.brk = __brk(0) + 2*SIZE_ALIGN-1 & -SIZE_ALIGN; + mal.brk = __brk(0); +#ifdef SHARED + mal.brk = mal.brk + PAGE_SIZE-1 & -PAGE_SIZE; +#endif + mal.brk = mal.brk + 2*SIZE_ALIGN-1 & -SIZE_ALIGN; c = expand_heap(n);