mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[KERNEL32_WINETEST] Avoid calling WaitForMultipleObjectsEx with pseudo handle. Brought to you by Sebastian Lackner.
svn path=/trunk/; revision=70099
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user