summaryrefslogtreecommitdiff
path: root/firmware/thread.c
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2010-06-18 03:10:18 +0000
committerMichael Sevakis <jethead71@rockbox.org>2010-06-18 03:10:18 +0000
commitd9c9fe305c01c30e4f9e8c981a7069ef8e94ca81 (patch)
tree3bc6a8e7e36e5f3fb9e429b331f15c769542d738 /firmware/thread.c
parentb812465bfff2111e149a44d7041c1d62d7e1519c (diff)
downloadrockbox-d9c9fe305c01c30e4f9e8c981a7069ef8e94ca81.tar.gz
rockbox-d9c9fe305c01c30e4f9e8c981a7069ef8e94ca81.zip
For multiprocessor targets, do the thread_exit routine such that we don't need to rely on the compiler's good graces to have stack switching be reliable. Only needs a few asm instructions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26906 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/thread.c')
-rw-r--r--firmware/thread.c25
1 files changed, 10 insertions, 15 deletions
diff --git a/firmware/thread.c b/firmware/thread.c
index de9d05da88..c00fc36e3f 100644
--- a/firmware/thread.c
+++ b/firmware/thread.c
@@ -157,8 +157,8 @@ static inline void load_context(const void* addr)
157 __attribute__((always_inline)); 157 __attribute__((always_inline));
158 158
159#if NUM_CORES > 1 159#if NUM_CORES > 1
160static void thread_final_exit(struct thread_entry *current) 160static void thread_final_exit_do(struct thread_entry *current)
161 __attribute__((noinline, noreturn)); 161 __attribute__((noinline, noreturn, used));
162#else 162#else
163static inline void thread_final_exit(struct thread_entry *current) 163static inline void thread_final_exit(struct thread_entry *current)
164 __attribute__((always_inline, noreturn)); 164 __attribute__((always_inline, noreturn));
@@ -1675,22 +1675,16 @@ void thread_wait(unsigned int thread_id)
1675/* This is done to foil optimizations that may require the current stack, 1675/* This is done to foil optimizations that may require the current stack,
1676 * such as optimizing subexpressions that put variables on the stack that 1676 * such as optimizing subexpressions that put variables on the stack that
1677 * get used after switching stacks. */ 1677 * get used after switching stacks. */
1678static void thread_final_exit(struct thread_entry *current)
1679{
1680#if NUM_CORES > 1 1678#if NUM_CORES > 1
1681 cpucache_flush(); 1679/* Called by ASM stub */
1682 1680static void thread_final_exit_do(struct thread_entry *current)
1683 /* Switch to the idle stack if not on the main core (where "main" 1681#else
1684 * runs) - we can hope gcc doesn't need the old stack beyond this 1682/* No special procedure is required before calling */
1685 * point. */ 1683static inline void thread_final_exit(struct thread_entry *current)
1686 if (current->core != CPU) 1684#endif
1687 { 1685{
1688 switch_to_idle_stack(current->core);
1689 }
1690
1691 /* At this point, this thread isn't using resources allocated for 1686 /* At this point, this thread isn't using resources allocated for
1692 * execution except the slot itself. */ 1687 * execution except the slot itself. */
1693#endif /* NUM_CORES */
1694 1688
1695 /* Signal this thread */ 1689 /* Signal this thread */
1696 thread_queue_wake(&current->queue); 1690 thread_queue_wake(&current->queue);
@@ -1746,6 +1740,7 @@ void thread_exit(void)
1746 new_thread_id(current->id, current); 1740 new_thread_id(current->id, current);
1747 current->name = NULL; 1741 current->name = NULL;
1748 1742
1743 /* Do final cleanup and remove the thread */
1749 thread_final_exit(current); 1744 thread_final_exit(current);
1750} 1745}
1751 1746