mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 17:42:36 -05:00
Fixed the dreaded iRiver simulator crash
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6767 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
431e813532
commit
b08e2acf45
1 changed files with 5 additions and 1 deletions
|
|
@ -108,7 +108,11 @@ static const char audio_thread_name[] = "audio";
|
||||||
|
|
||||||
/* Codec thread. */
|
/* Codec thread. */
|
||||||
static struct event_queue codec_queue;
|
static struct event_queue codec_queue;
|
||||||
static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)] __attribute__ ((section(".idata")));
|
static long codec_stack[(DEFAULT_STACK_SIZE + 0x2500)/sizeof(long)]
|
||||||
|
#ifndef SIMULATOR
|
||||||
|
__attribute__ ((section(".idata")))
|
||||||
|
#endif
|
||||||
|
;
|
||||||
static const char codec_thread_name[] = "codec";
|
static const char codec_thread_name[] = "codec";
|
||||||
|
|
||||||
/* Is file buffer currently being refilled? */
|
/* Is file buffer currently being refilled? */
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue