diff options
author | Nils Wallménius <nils@rockbox.org> | 2009-11-20 16:42:07 +0000 |
---|---|---|
committer | Nils Wallménius <nils@rockbox.org> | 2009-11-20 16:42:07 +0000 |
commit | 7d4ca1a85a911b4109799f9200f08818961717f5 (patch) | |
tree | af7de1feb6aec9200c4ba88eadd2f089050545c6 /firmware/target | |
parent | e0b020fbfcadfbd4fbcb3ae7b5b5ea53992b404b (diff) |
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
Diffstat (limited to 'firmware/target')
-rw-r--r-- | firmware/target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c b/firmware/target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c index 6043d00bf5..14bb534138 100644 --- a/firmware/target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c +++ b/firmware/target/arm/imx31/gigabeat-s/headphone-gigabeat-s.c @@ -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; |