summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorHristo Kovachev <bger@rockbox.org>2006-04-05 08:33:20 +0000
committerHristo Kovachev <bger@rockbox.org>2006-04-05 08:33:20 +0000
commit6eafd48cec1895c5426961c4a54d0e22d58deb4d (patch)
treed56722faa383ebb53697ea1ae121af2496b43f26 /firmware/export
parent45f2df0eba7a3ffa633a709e13d3b871592d2fc6 (diff)
downloadrockbox-6eafd48cec1895c5426961c4a54d0e22d58deb4d.tar.gz
rockbox-6eafd48cec1895c5426961c4a54d0e22d58deb4d.zip
Fix bug #5037, spotted by David Rothenberger, also increase the max threads' count by 2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9512 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h
index da61d1a632..762e315a4c 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -22,9 +22,9 @@
22#include <stdbool.h> 22#include <stdbool.h>
23 23
24#if CONFIG_CODEC == SWCODEC 24#if CONFIG_CODEC == SWCODEC
25#define MAXTHREADS 14 25#define MAXTHREADS 16
26#else 26#else
27#define MAXTHREADS 9 27#define MAXTHREADS 11
28#endif 28#endif
29 29
30#define DEFAULT_STACK_SIZE 0x400 /* Bytes */ 30#define DEFAULT_STACK_SIZE 0x400 /* Bytes */