mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 12:32:56 +01:00
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:
committed by
Christian Helmuth
parent
ae43d13b90
commit
6e481127ce
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user