Base voice thread stack size on DEFAULT_STACK_SIZE, it's otherwise likely to overflow on app targets.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28783 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-12-10 15:14:11 +00:00
parent 18accc018b
commit 44cdce9b29
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@
/* Voice thread variables */
static unsigned int voice_thread_id = 0;
static long voice_stack[0x7c0/sizeof(long)] IBSS_ATTR_VOICE_STACK;
static long voice_stack[(DEFAULT_STACK_SIZE + 0x3C0)/sizeof(long)] IBSS_ATTR_VOICE_STACK;
static const char voice_thread_name[] = "voice";
/* Voice thread synchronization objects */