From b6e9bc4925de143618d4042a836c5847837590c1 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Mon, 7 Nov 2005 07:13:47 +0000 Subject: [PATCH] - indexer turned on - thread function made static --- Source/charon/thread_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/charon/thread_pool.c b/Source/charon/thread_pool.c index 5ca43be1c..3115e1588 100644 --- a/Source/charon/thread_pool.c +++ b/Source/charon/thread_pool.c @@ -54,7 +54,7 @@ typedef struct { } private_thread_pool_t; -void job_processing(private_thread_pool_t *this) +static void job_processing(private_thread_pool_t *this) { /* cancellation disabled by default */ pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);