提交 325ea29d 编写于 作者: L leibanli 提交者: leijiawei

fix warning:unused variable 'count'

Signed-off-by: Nleijiawei <18691361562@163.com>
上级 c2f9f670
...@@ -52,6 +52,8 @@ static void *ThreadSetFunc2(void *arg) ...@@ -52,6 +52,8 @@ static void *ThreadSetFunc2(void *arg)
retValue = sigwait(&set, &sig); retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue); ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
} }
static void *ThreadSetDfl(void *arg) static void *ThreadSetDfl(void *arg)
...@@ -69,6 +71,8 @@ static void *ThreadSetDfl(void *arg) ...@@ -69,6 +71,8 @@ static void *ThreadSetDfl(void *arg)
retValue = sigwait(&set, &sig); retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue); ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
} }
static void *ThreadKill(void *arg) static void *ThreadKill(void *arg)
...@@ -86,6 +90,8 @@ static void *ThreadKill(void *arg) ...@@ -86,6 +90,8 @@ static void *ThreadKill(void *arg)
retValue = sigwait(&set, &sig); retValue = sigwait(&set, &sig);
ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue); ICUNIT_ASSERT_EQUAL_NULL(retValue, 0, retValue);
return NULL;
} }
static int TestMultiPthreadFatherProcessExit() static int TestMultiPthreadFatherProcessExit()
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册