- fixed thread pool removal

This commit is contained in:
Martin Willi
2005-12-07 16:04:50 +00:00
parent c3903a1861
commit 0e50bde37b
2 changed files with 0 additions and 11 deletions
-5
View File
@@ -182,7 +182,6 @@ static void initialize(private_daemon_t *this)
this->public.sender = sender_create(); this->public.sender = sender_create();
this->public.receiver = receiver_create(); this->public.receiver = receiver_create();
this->public.scheduler = scheduler_create(); this->public.scheduler = scheduler_create();
this->public.prime_pool = prime_pool_create(PRIME_PRE_COMPUTATION_LIMIT);
this->public.thread_pool = thread_pool_create(NUMBER_OF_WORKING_THREADS); this->public.thread_pool = thread_pool_create(NUMBER_OF_WORKING_THREADS);
} }
@@ -207,10 +206,6 @@ static void destroy(private_daemon_t *this)
{ {
this->public.thread_pool->destroy(this->public.thread_pool); this->public.thread_pool->destroy(this->public.thread_pool);
} }
if (this->public.prime_pool != NULL)
{
this->public.prime_pool->destroy(this->public.prime_pool);
}
if (this->public.job_queue != NULL) if (this->public.job_queue != NULL)
{ {
this->public.job_queue->destroy(this->public.job_queue); this->public.job_queue->destroy(this->public.job_queue);
-6
View File
@@ -26,7 +26,6 @@
#include <threads/sender.h> #include <threads/sender.h>
#include <threads/receiver.h> #include <threads/receiver.h>
#include <threads/scheduler.h> #include <threads/scheduler.h>
#include <threads/prime_pool.h>
#include <threads/thread_pool.h> #include <threads/thread_pool.h>
#include <network/socket.h> #include <network/socket.h>
#include <sa/ike_sa_manager.h> #include <sa/ike_sa_manager.h>
@@ -151,11 +150,6 @@ struct daemon_t {
*/ */
thread_pool_t *thread_pool; thread_pool_t *thread_pool;
/**
* Low-priority thread which generates primes.
*/
prime_pool_t *prime_pool;
/** /**
* @brief Shut down the daemon. * @brief Shut down the daemon.
* *