diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2010-06-17 20:15:58 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2010-06-17 20:15:58 +0000 |
| commit | 2b640ba4b8a0007821677fc9f3cf9e856d53417e (patch) | |
| tree | b68204a1c5a33a93980a7903bc5cb4a906af5938 /firmware/export/thread.h | |
| parent | 69028d5d31384a0a97bd42081cacb01eb5d52793 (diff) | |
| download | rockbox-2b640ba4b8a0007821677fc9f3cf9e856d53417e.zip rockbox-2b640ba4b8a0007821677fc9f3cf9e856d53417e.tar.gz rockbox-2b640ba4b8a0007821677fc9f3cf9e856d53417e.tar.bz2 rockbox-2b640ba4b8a0007821677fc9f3cf9e856d53417e.tar.xz | |
Switch iPod 3G to use EABI toolchain. Make necessary threading changes to avoid use of stack after switching to idle stack.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26898 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/thread.h')
| -rw-r--r-- | firmware/export/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/thread.h b/firmware/export/thread.h index 8912283..d907e5d 100644 --- a/firmware/export/thread.h +++ b/firmware/export/thread.h @@ -375,7 +375,7 @@ void thread_thaw(unsigned int thread_id); /* Wait for a thread to exit */ void thread_wait(unsigned int thread_id); /* Exit the current thread */ -void thread_exit(void); +void thread_exit(void) __attribute__((noreturn)); #if defined(DEBUG) || defined(ROCKBOX_HAS_LOGF) #define ALLOW_REMOVE_THREAD /* Remove a thread from the scheduler */ |