Merge pull request #2603 from wwylele/please-signal

Timer: restore missing signaled=true from #2421
This commit is contained in:
bunnei 2017-02-27 16:14:31 -05:00 committed by GitHub
commit ad4097e75c
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,8 @@ void Timer::WakeupAllWaitingThreads() {
void Timer::Signal(int cycles_late) {
LOG_TRACE(Kernel, "Timer %u fired", GetObjectId());
signaled = true;
// Resume all waiting threads
WakeupAllWaitingThreads();