Don't keep interrupts disabled when waking a frozen thread. Fixes frozen UI on H10 while dircache scan is running in the background.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15239 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-10-21 09:23:08 +00:00
parent cc92a0db3d
commit afcfa1f669

View file

@ -2387,6 +2387,7 @@ void thread_thaw(struct thread_entry *thread)
}
UNLOCK_THREAD_SET_STATE(thread, STATE_RUNNING);
set_irq_level(oldlevel);
return;
}