summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2003-02-21 01:05:04 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2003-02-21 01:05:04 +0000
commit400a13f4680061b96c7d02a0eb34b94d6122ce3e (patch)
tree32d9c3298ca85567e25e936429a4e4d02b29b722 /firmware/export
parentfaddc27ea0b594b50640f5c33acc55312abddb52 (diff)
downloadrockbox-400a13f4680061b96c7d02a0eb34b94d6122ce3e.tar.gz
rockbox-400a13f4680061b96c7d02a0eb34b94d6122ce3e.zip
Decreased the thread context table size to save space in IRAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3311 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-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 7be58d0931..f5a4b50ddd 100644
--- a/firmware/export/thread.h
+++ b/firmware/export/thread.h
@@ -21,7 +21,7 @@
21 21
22#include <stdbool.h> 22#include <stdbool.h>
23 23
24#define MAXTHREADS 16 24#define MAXTHREADS 10
25#define DEFAULT_STACK_SIZE 0x400 /* Bytes */ 25#define DEFAULT_STACK_SIZE 0x400 /* Bytes */
26 26
27int create_thread(void* function, void* stack, int stack_size, char *name); 27int create_thread(void* function, void* stack, int stack_size, char *name);