summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmaury Pouly <pamaury@rockbox.org>2010-04-22 08:31:10 +0000
committerAmaury Pouly <pamaury@rockbox.org>2010-04-22 08:31:10 +0000
commit57dc493db55ec9388e3e3a3eb848fffccb07b301 (patch)
treef891ee767c6f44f652aea37099e7395755567886
parentacd09d33349b9fa6721d9a15dd1e4a4cb6ac9842 (diff)
downloadrockbox-57dc493db55ec9388e3e3a3eb848fffccb07b301.tar.gz
rockbox-57dc493db55ec9388e3e3a3eb848fffccb07b301.zip
dircache: increase stack size to handle the worse case path during rebuild (dircache->fat->ata-sd-pp+sdhc) and allows directory with depth up to 20 approximately
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25697 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 8b9be78b35..495366f5d8 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -74,7 +74,7 @@ static unsigned int cache_build_ticks = 0;
74static unsigned long appflags = 0; 74static unsigned long appflags = 0;
75 75
76static struct event_queue dircache_queue; 76static struct event_queue dircache_queue;
77static long dircache_stack[(DEFAULT_STACK_SIZE + 0x200)/sizeof(long)]; 77static long dircache_stack[(DEFAULT_STACK_SIZE + 0x400)/sizeof(long)];
78static const char dircache_thread_name[] = "dircache"; 78static const char dircache_thread_name[] = "dircache";
79 79
80static struct fdbind_queue fdbind_cache[MAX_PENDING_BINDINGS]; 80static struct fdbind_queue fdbind_cache[MAX_PENDING_BINDINGS];