Commit 2953f514 authored by Rusty Russell's avatar Rusty Russell

configurator: fix HAVE_UCONTEXT test on Ubuntu 16.04.

Seems to want more stack.
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent b744da8c
...@@ -323,7 +323,7 @@ static struct test tests[] = { ...@@ -323,7 +323,7 @@ static struct test tests[] = {
NULL, NULL, NULL, NULL,
"#include <ucontext.h>\n" "#include <ucontext.h>\n"
"static int x = 0;\n" "static int x = 0;\n"
"static char stack[1024];\n" "static char stack[2048];\n"
"static ucontext_t a, b;\n" "static ucontext_t a, b;\n"
"static void fn(void) {\n" "static void fn(void) {\n"
" x |= 2;\n" " x |= 2;\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment