fix warning:unused variable 'count' & add return value

Signed-off-by: leijiawei <18691361562@163.com>
This commit is contained in:
leijiawei 2022-08-31 15:28:27 +08:00
parent 325ea29df3
commit 51f6a20723
1 changed files with 3 additions and 3 deletions

View File

@ -53,7 +53,7 @@ static void *ThreadSetFunc2(void *arg)
retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
return NULL;
}
static void *ThreadSetDfl(void *arg)
@ -72,7 +72,7 @@ static void *ThreadSetDfl(void *arg)
retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
return NULL;
}
static void *ThreadKill(void *arg)
@ -91,7 +91,7 @@ static void *ThreadKill(void *arg)
retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
return NULL;
}
static int TestMultiPthreadFatherProcessExit()