1
0
Fork 0
forked from len0rd/rockbox

Convert remaining __attribute__((noreturn)) to NORETURN_ATTR.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@31189 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Boris Gjenero 2011-12-09 16:13:03 +00:00
parent 59e71ee80c
commit 8906b3e659
3 changed files with 4 additions and 4 deletions

View file

@ -165,10 +165,10 @@ static inline void load_context(const void* addr)
#if NUM_CORES > 1
static void thread_final_exit_do(struct thread_entry *current)
__attribute__((noinline, noreturn)) USED_ATTR;
__attribute__((noinline)) NORETURN_ATTR USED_ATTR;
#else
static inline void thread_final_exit(struct thread_entry *current)
__attribute__((always_inline, noreturn));
__attribute__((always_inline)) NORETURN_ATTR;
#endif
void switch_thread(void)