diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2014-08-25 13:55:16 -0400 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2014-08-25 13:55:16 -0400 |
commit | 2cb274ca77815eab565106d16f2e7592cd5c3650 (patch) | |
tree | ff323c5d0cd8ea4e96fcd6b5826f383957e02b23 /firmware/kernel | |
parent | 6ffb8ffeeed9aca75c278906785a957d72b3ef57 (diff) | |
download | rockbox-2cb274ca77815eab565106d16f2e7592cd5c3650.tar.gz rockbox-2cb274ca77815eab565106d16f2e7592cd5c3650.tar.bz2 rockbox-2cb274ca77815eab565106d16f2e7592cd5c3650.zip |
panicf doesn't return so why not tell GCC and $AVE :
Change-Id: I6096576f539bfb02b340b82fabc5019f6756b722
Diffstat (limited to 'firmware/kernel')
-rw-r--r-- | firmware/kernel/thread.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/firmware/kernel/thread.c b/firmware/kernel/thread.c index 01395a9d6d..05c09dc594 100644 --- a/firmware/kernel/thread.c +++ b/firmware/kernel/thread.c @@ -193,7 +193,6 @@ static NO_INLINE NORETURN_ATTR static char name[sizeof (((struct thread_debug_info *)0)->name)]; format_thread_name(name, sizeof (name), thread); panicf ("%s %s" IF_COP(" (%d)"), msg, name IF_COP(, core)); - while (1); } static NO_INLINE void thread_stkov(struct thread_entry *thread) |