1
0
Fork 0
forked from len0rd/rockbox

increase the dircache thread size to hopefully stop it StkOv'ing

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12040 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-01-17 10:25:11 +00:00
parent e4ef26cd40
commit b0d1bb891e

View file

@ -60,7 +60,7 @@ static unsigned int cache_build_ticks = 0;
static char dircache_cur_path[MAX_PATH*2];
static struct event_queue dircache_queue;
static long dircache_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
static long dircache_stack[(DEFAULT_STACK_SIZE + 0x900)/sizeof(long)];
static const char dircache_thread_name[] = "dircache";
static struct fdbind_queue fdbind_cache[MAX_PENDING_BINDINGS];