mixer: Increase stack size of entrypoint

This commit is contained in:
Norman Feske 2014-04-18 18:04:17 +02:00
parent 2b5f4b0aaf
commit d7d62c53a6
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ class Audio_out::Root : public Audio_out::Root_component
int main()
{
static Cap_connection cap;
enum { STACK_SIZE = 1024 * sizeof(addr_t) };
enum { STACK_SIZE = 4*1024*sizeof(addr_t) };
for (int i = 0; i < MAX_CHANNELS; i++)
_channels[i] = new (env()->heap()) Audio_out::Channel();