Increased time in TestSynchMultipleThreads

This commit is contained in:
Armin Novak 2021-04-27 12:19:06 +02:00 committed by akallabeth
parent 460fef545d
commit 210b9f58b7
1 changed files with 5 additions and 5 deletions

View File

@ -54,7 +54,7 @@ static BOOL TestWaitForAll(void)
{
BOOL rc = FALSE;
DWORD ret;
HANDLE threads[THREADS];
HANDLE threads[THREADS] = { 0 };
/* WaitForAll, timeout */
if (start_threads(THREADS, threads))
{
@ -91,7 +91,7 @@ static BOOL TestWaitOne(void)
{
BOOL rc = FALSE;
DWORD ret;
HANDLE threads[THREADS];
HANDLE threads[THREADS] = { 0 };
/* WaitForAll, timeout */
if (start_threads(THREADS, threads))
{
@ -127,7 +127,7 @@ static BOOL TestWaitOneTimeout(void)
{
BOOL rc = FALSE;
DWORD ret;
HANDLE threads[THREADS];
HANDLE threads[THREADS] = { 0 };
/* WaitForAll, timeout */
if (start_threads(THREADS, threads))
{
@ -164,7 +164,7 @@ static BOOL TestWaitOneTimeoutMultijoin(void)
{
BOOL rc = FALSE;
DWORD ret, i;
HANDLE threads[THREADS];
HANDLE threads[THREADS] = { 0 };
/* WaitForAll, timeout */
if (start_threads(THREADS, threads))
{
@ -202,7 +202,7 @@ fail:
static BOOL TestDetach(void)
{
HANDLE threads[THREADS];
HANDLE threads[THREADS] = { 0 };
/* WaitForAll, timeout */
if (start_threads(THREADS, threads))
{