summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2005-08-21 12:51:00 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2005-08-21 12:51:00 +0000
commitb529289e93a908f520bd387d04533217f02336b9 (patch)
treee2d000b3016e47599d32d63afb55087a2cd156ed /firmware
parent8899fccf760657910797639ee7c508447b86c8ac (diff)
downloadrockbox-b529289e93a908f520bd387d04533217f02336b9.tar.gz
rockbox-b529289e93a908f520bd387d04533217f02336b9.zip
Fixed the usb mode. We did hit the thread limit which was now
increased from 10 to 14. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7367 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/export/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h
index ad1b6527cd..f6795062d4 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -21,7 +21,7 @@
#include <stdbool.h>
-#define MAXTHREADS 10
+#define MAXTHREADS 14
#define DEFAULT_STACK_SIZE 0x400 /* Bytes */
int create_thread(void (*function)(void), void* stack, int stack_size,