[KERNEL32_WINETEST] Avoid calling WaitForMultipleObjectsEx with pseudo handle. Brought to you by Sebastian Lackner.

svn path=/trunk/; revision=70099
This commit is contained in:
Amine Khaldi 2015-11-24 19:38:03 +00:00
parent b841070c1a
commit 63b79405b9

View file

@ -2526,8 +2526,7 @@ START_TEST(sync)
{
if (!strcmp(argv[2], "apc_deadlock"))
{
HANDLE handle = GetCurrentThread();
for (;;) WaitForMultipleObjectsEx(1, &handle, FALSE, INFINITE, TRUE);
for (;;) SleepEx(INFINITE, TRUE);
}
return;
}