diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2003-02-21 01:05:04 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2003-02-21 01:05:04 +0000 |
| commit | 400a13f4680061b96c7d02a0eb34b94d6122ce3e (patch) | |
| tree | 32d9c3298ca85567e25e936429a4e4d02b29b722 /firmware | |
| parent | faddc27ea0b594b50640f5c33acc55312abddb52 (diff) | |
| download | rockbox-400a13f4680061b96c7d02a0eb34b94d6122ce3e.zip rockbox-400a13f4680061b96c7d02a0eb34b94d6122ce3e.tar.gz rockbox-400a13f4680061b96c7d02a0eb34b94d6122ce3e.tar.bz2 rockbox-400a13f4680061b96c7d02a0eb34b94d6122ce3e.tar.xz | |
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')
| -rw-r--r-- | firmware/export/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h index 7be58d0..f5a4b50 100644 --- a/firmware/export/thread.h +++ b/firmware/export/thread.h @@ -21,7 +21,7 @@ #include <stdbool.h> -#define MAXTHREADS 16 +#define MAXTHREADS 10 #define DEFAULT_STACK_SIZE 0x400 /* Bytes */ int create_thread(void* function, void* stack, int stack_size, char *name); |