From 3fb7ae0586958a2404db41b8cf6ec4fe88f2f674 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 7 Aug 2013 15:44:19 +0000 Subject: [PATCH] Respect MINSIGSTKSZ when allocating an alternative stack http://hydra.nixos.org/build/5663577 --- src/libmain/stack.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libmain/stack.cc b/src/libmain/stack.cc index 0ea80f18e..64df95547 100644 --- a/src/libmain/stack.cc +++ b/src/libmain/stack.cc @@ -53,7 +53,7 @@ void detectStackOverflow() requires an alternative stack, otherwise the signal cannot be delivered when we're out of stack space. */ stack_t stack; - stack.ss_size = 4096 * 4; + stack.ss_size = 4096 * 4 + MINSIGSTKSZ; stack.ss_sp = new char[stack.ss_size]; if (!stack.ss_sp) throw Error("cannot allocate alternative stack"); stack.ss_flags = 0;