Commit 7265e892 authored by Alexandre Julliard's avatar Alexandre Julliard

server: Set the idle event when retrieving a timer message.

parent 92e704ed
......@@ -12038,7 +12038,7 @@ static const struct
{ WAIT_TIMEOUT, WAIT_TIMEOUT, FALSE },
{ 0, 0, FALSE },
{ 0, 0, FALSE },
/* 10 */ { 0, 0, TRUE },
/* 10 */ { 0, 0, FALSE },
{ 0, 0, FALSE },
{ 0, WAIT_TIMEOUT, FALSE },
{ 0, 0, FALSE },
......
......@@ -1814,6 +1814,8 @@ DECL_HANDLER(get_message)
reply->wparam = timer->id;
reply->lparam = timer->lparam;
reply->time = get_tick_count();
if (!(req->flags & PM_NOYIELD) && current->process->idle_event)
set_event( current->process->idle_event );
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment