1
0
Fork 0
forked from len0rd/rockbox

less stack means more mem for fun and games ;-)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1780 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-08-16 11:53:54 +00:00
parent 1ed48d4975
commit 2f4435cc7c

View file

@ -20,7 +20,7 @@
#define THREAD_H
#define MAXTHREADS 16
#define DEFAULT_STACK_SIZE 0x800 /* Bytes */
#define DEFAULT_STACK_SIZE 0x400 /* Bytes */
int create_thread(void* function, void* stack, int stack_size, char *name);
void switch_thread(void);