summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-08-01 08:14:56 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-08-01 08:14:56 +0000
commit2f70f13a42404c2288a149dfd77162a30c919c14 (patch)
tree8efa4adcf7dca173ddd312ea569db4c020e5dc50 /firmware
parent1f4613df6cabc862d957631ed99706b03c8350f2 (diff)
downloadrockbox-2f70f13a42404c2288a149dfd77162a30c919c14.tar.gz
rockbox-2f70f13a42404c2288a149dfd77162a30c919c14.zip
Moved switch_thread() and the thread context data to internal RAM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1500 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/thread.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index a46351cb1f..2651a4f2d7 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -31,7 +31,7 @@ struct regs
int num_threads;
static int current_thread;
-static struct regs thread_contexts[MAXTHREADS];
+static struct regs thread_contexts[MAXTHREADS] __attribute__ ((section(".idata")));
char *thread_name[MAXTHREADS];
void *thread_stack[MAXTHREADS];
int thread_stack_size[MAXTHREADS];
@@ -40,6 +40,8 @@ static char main_thread_name[] = "main";
extern int stackbegin[];
extern int stackend[];
+void switch_thread(void) __attribute__ ((section(".icode")));
+
/*---------------------------------------------------------------------------
* Store non-volatile context.
*---------------------------------------------------------------------------