1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Linus Nielsen Feltzing 2003-02-21 01:05:04 +00:00
parent faddc27ea0
commit 400a13f468

View file

@ -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);