summaryrefslogtreecommitdiff
path: root/firmware/common/dircache.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-10-16 22:00:51 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-10-16 22:00:51 +0000
commit84f5c5c3e3590cb993f4cf2a7eba5979e3bc825b (patch)
treeb082d38196667f747bbcb9325dc65339d61b67b2 /firmware/common/dircache.c
parent28936603be8ab9c8c3e2284d835c3961b4033bfd (diff)
downloadrockbox-84f5c5c3e3590cb993f4cf2a7eba5979e3bc825b.tar.gz
rockbox-84f5c5c3e3590cb993f4cf2a7eba5979e3bc825b.zip
Take out some NOCACHEBSS_ATTR's that were accidentally left. Put some threading code in IRAM that should be there on PP502x.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15155 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common/dircache.c')
-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 b92d8fe974..8e9cffb73e 100644
--- a/firmware/common/dircache.c
+++ b/firmware/common/dircache.c
@@ -62,7 +62,7 @@ static unsigned long reserve_used = 0;
62static unsigned int cache_build_ticks = 0; 62static unsigned int cache_build_ticks = 0;
63static char dircache_cur_path[MAX_PATH*2]; 63static char dircache_cur_path[MAX_PATH*2];
64 64
65static struct event_queue dircache_queue NOCACHEBSS_ATTR; 65static struct event_queue dircache_queue;
66static long dircache_stack[(DEFAULT_STACK_SIZE + 0x900)/sizeof(long)]; 66static long dircache_stack[(DEFAULT_STACK_SIZE + 0x900)/sizeof(long)];
67static const char dircache_thread_name[] = "dircache"; 67static const char dircache_thread_name[] = "dircache";
68 68