summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-01-17 10:25:11 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-01-17 10:25:11 +0000
commitb0d1bb891ec91994f7cd453e09dd38a5539e16d6 (patch)
tree1768224159a917a86c4e96193bc190d7ae1f2bf6
parente4ef26cd40dca971746c0135741b1cab6f1b8711 (diff)
downloadrockbox-b0d1bb891ec91994f7cd453e09dd38a5539e16d6.tar.gz
rockbox-b0d1bb891ec91994f7cd453e09dd38a5539e16d6.zip
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
-rw-r--r--firmware/common/dircache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/common/dircache.c b/firmware/common/dircache.c
index 6ad69be2a7..5b84e25ea3 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -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];