This commit is contained in:
Martin Willi
2005-11-03 13:35:22 +00:00
parent c93b51ec8c
commit 5673ba5426
+2 -1
View File
@@ -130,8 +130,9 @@ static void test_linked_list(private_tester_t *this)
*/ */
static void test_thread_pool(private_tester_t *this) static void test_thread_pool(private_tester_t *this)
{ {
size_t pool_size;
size_t desired_pool_size = 10; size_t desired_pool_size = 10;
size_t pool_size;
thread_pool_t *pool = thread_pool_create(desired_pool_size); thread_pool_t *pool = thread_pool_create(desired_pool_size);
pool->get_pool_size(pool, &pool_size); pool->get_pool_size(pool, &pool_size);
this->assert_true(this, (desired_pool_size == pool_size), "thread creation"); this->assert_true(this, (desired_pool_size == pool_size), "thread creation");