summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-07-03 15:09:11 +0000
committerJens Arnold <amiconn@rockbox.org>2005-07-03 15:09:11 +0000
commitbb3ed3cda98dc59719f5ab48fafc542eaa0d29a0 (patch)
treef2e9c2a2a8162edf689fba305b7390e1efed2178 /apps
parentd2456b44f73e6a1310d8dc2c98db92364b70e793 (diff)
downloadrockbox-bb3ed3cda98dc59719f5ab48fafc542eaa0d29a0.tar.gz
rockbox-bb3ed3cda98dc59719f5ab48fafc542eaa0d29a0.zip
Use the central IDATA_ATTR define.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6992 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/playback.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/apps/playback.c b/apps/playback.c
index d5866121ba..edeaedb118 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -110,11 +110,7 @@ static const char audio_thread_name[] = "audio";
110 110
111/* Codec thread. */ 111/* Codec thread. */
112static struct event_queue codec_queue; 112static struct event_queue codec_queue;
113static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)] 113static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)] IDATA_ATTR;
114#ifndef SIMULATOR
115__attribute__ ((section(".idata")))
116#endif
117;
118static const char codec_thread_name[] = "codec"; 114static const char codec_thread_name[] = "codec";
119 115
120static struct mutex mutex_bufferfill; 116static struct mutex mutex_bufferfill;