Skip to content
Snippets Groups Projects
Commit 691d8284 authored by Avi Kivity's avatar Avi Kivity
Browse files

pthread: increase default stack size

Java stomps all over a 64k stack.
parent 8689e882
No related branches found
No related tags found
No related merge requests found
......@@ -59,7 +59,7 @@ namespace pthread_private {
sched::thread::stack_info pthread::allocate_stack()
{
size_t size = 64*1024;
size_t size = 1024*1024;
return { new char[size], size };
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment