fix warning:unused variable 'count'

Signed-off-by: leijiawei <18691361562@163.com>
This commit is contained in:
leibanli 2022-08-30 21:53:58 +08:00 committed by leijiawei
parent c2f9f6705f
commit 325ea29df3
1 changed files with 6 additions and 0 deletions

View File

@ -52,6 +52,8 @@ static void *ThreadSetFunc2(void *arg)
retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
}
static void *ThreadSetDfl(void *arg)
@ -69,6 +71,8 @@ static void *ThreadSetDfl(void *arg)
retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
}
static void *ThreadKill(void *arg)
@ -86,6 +90,8 @@ static void *ThreadKill(void *arg)
retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
}
static int TestMultiPthreadFatherProcessExit()