Skip to content
Snippets Groups Projects
Commit ad4097e7 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #2603 from wwylele/please-signal

Timer: restore missing signaled=true from #2421
parents 5e334af3 85ba60d5
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,8 @@ void Timer::WakeupAllWaitingThreads() { ...@@ -80,6 +80,8 @@ void Timer::WakeupAllWaitingThreads() {
void Timer::Signal(int cycles_late) { void Timer::Signal(int cycles_late) {
LOG_TRACE(Kernel, "Timer %u fired", GetObjectId()); LOG_TRACE(Kernel, "Timer %u fired", GetObjectId());
signaled = true;
// Resume all waiting threads // Resume all waiting threads
WakeupAllWaitingThreads(); WakeupAllWaitingThreads();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment