From 9441e6cb8981d821022bb9423d314b67ba21dba0 Mon Sep 17 00:00:00 2001 From: "hp.com!davidm" Date: Thu, 27 Nov 2003 07:17:47 +0000 Subject: [PATCH] (STACK_SIZE): Make it 128KB on x86. SIGSTKSZ is far too small. (Logical change 1.131) --- tests/bt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bt.c b/tests/bt.c index e5f40db9..5337ff74 100644 --- a/tests/bt.c +++ b/tests/bt.c @@ -43,7 +43,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #if UNW_TARGET_X86 -# define STACK_SIZE (2*SIGSTKSZ) /* On x86, SIGSTKSZ is too small */ +# define STACK_SIZE (128*1024) /* On x86, SIGSTKSZ is too small */ #else # define STACK_SIZE SIGSTKSZ #endif