- updated comments

- revised get_count function
This commit is contained in:
Martin Willi
2005-11-10 15:06:52 +00:00
parent 7330c172e1
commit 0617722cae
3 changed files with 63 additions and 28 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ void test_thread_pool(tester_t *tester)
size_t pool_size;
thread_pool_t *pool = thread_pool_create(desired_pool_size);
pool->get_pool_size(pool, &pool_size);
pool_size = pool->get_pool_size(pool);
tester->assert_true(tester, (desired_pool_size == pool_size), "thread creation");
tester->assert_true(tester, (pool->destroy(pool) == SUCCESS), "threadpool destruction");
}