mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 07:37:02 +00:00
server: Set the idle event when retrieving a timer message.
This commit is contained in:
parent
92e704edc5
commit
7265e89226
2 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue