mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00: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:
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()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user