hw: increase stack size for thread test

Stack size of cpu helper is insufficient if a exception is thrown during
'test_create_as_many_threads()'

Related to #1652
This commit is contained in:
Alexander Boettcher 2015-08-21 14:35:02 +02:00 committed by Christian Helmuth
parent ae43d13b90
commit 6e481127ce
1 changed files with 2 additions and 2 deletions

View File

@ -161,10 +161,10 @@ static void test_main_thread()
** Using cpu-session for thread creation *
******************************************/
struct Cpu_helper : Thread<0x1000>
struct Cpu_helper : Thread<0x2000>
{
Cpu_helper(const char * name, Cpu_session * cpu)
: Thread<0x1000>(name, cpu) { }
: Thread<0x2000>(name, cpu) { }
void entry()
{