1
0
Fork 0
forked from len0rd/rockbox

The interrupt disable is only relevant on multicore targets.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15241 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2007-10-21 09:43:28 +00:00
parent 7c594d6ea1
commit a4058aa94e

View file

@ -2387,7 +2387,9 @@ void thread_thaw(struct thread_entry *thread)
}
UNLOCK_THREAD_SET_STATE(thread, STATE_RUNNING);
#if NUM_CORES > 1
set_irq_level(oldlevel);
#endif
return;
}