Increase stack space for the Gigabeat S specific headphone thread to fix stack overflow when compiled with gcc 4.4

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23678 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2009-11-20 16:42:07 +00:00
parent e0b020fbfc
commit 7d4ca1a85a

View file

@ -31,7 +31,7 @@
static struct wakeup headphone_wakeup;
static unsigned int headphone_thread_id;
static int headphone_stack[160/sizeof(int)]; /* Not much stack needed */
static int headphone_stack[200/sizeof(int)]; /* Not much stack needed */
static const char * const headphone_thread_name = "headphone";
static bool headphones_detect = false;