diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-07 12:07:08 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-07 12:07:08 +0000 |
commit | 0f658b4c5b8b17e2392ae7da693c36ab890fbdd2 (patch) | |
tree | 7bc497676bbc2b0f26d31b7570589ab97d948621 /Source/charon/thread_pool.c | |
parent | d9b41b24784358d68734365cb55869fae32f03e2 (diff) | |
download | strongswan-0f658b4c5b8b17e2392ae7da693c36ab890fbdd2.tar.bz2 strongswan-0f658b4c5b8b17e2392ae7da693c36ab890fbdd2.tar.xz |
- global job-queue renamed to global_job_queue
Diffstat (limited to 'Source/charon/thread_pool.c')
-rw-r--r-- | Source/charon/thread_pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 3115e1588..d023d0a08 100644 --- a/Source/charon/thread_pool.c +++ b/Source/charon/thread_pool.c @@ -32,7 +32,7 @@ #include <pthread.h> -extern job_queue_t *job_queue; +extern job_queue_t *global_job_queue; /** @@ -61,7 +61,7 @@ static void job_processing(private_thread_pool_t *this) for (;;) { job_t *job; - job_queue->get(job_queue, &job); + global_job_queue->get(global_job_queue, &job); /* process them here */ |