提交 51f6a207 编写于 作者: L leijiawei

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

Signed-off-by: Nleijiawei <18691361562@163.com>
上级 325ea29d
...@@ -53,7 +53,7 @@ static void *ThreadSetFunc2(void *arg) ...@@ -53,7 +53,7 @@ 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; return NULL;
} }
static void *ThreadSetDfl(void *arg) static void *ThreadSetDfl(void *arg)
...@@ -72,7 +72,7 @@ static void *ThreadSetDfl(void *arg) ...@@ -72,7 +72,7 @@ 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; return NULL;
} }
static void *ThreadKill(void *arg) static void *ThreadKill(void *arg)
...@@ -91,7 +91,7 @@ static void *ThreadKill(void *arg) ...@@ -91,7 +91,7 @@ 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; 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.
先完成此消息的编辑!
想要评论请 注册