You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2006/12/14 12:05:43 UTC

svn commit: r487173 - /webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c

Author: dinesh
Date: Thu Dec 14 03:05:41 2006
New Revision: 487173

URL: http://svn.apache.org/viewvc?view=rev&rev=487173
Log:
fixed:455 add function prefix

Modified:
    webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c

Modified: webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c?view=diff&rev=487173&r1=487172&r2=487173
==============================================================================
--- webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c (original)
+++ webservices/axis2/trunk/c/modules/core/transport/http/receiver/http_svr_thread.c Thu Dec 14 03:05:41 2006
@@ -95,7 +95,7 @@
     const axis2_env_t **system_env);
 
 void *AXIS2_THREAD_FUNC
-worker_func(
+axis2_svr_thread_worker_func(
     axis2_thread_t *thd,
     void *data);
 
@@ -222,7 +222,7 @@
         arg_list->worker = svr_thread_impl->worker;
 #ifdef AXIS2_SVR_MULTI_THREADED
         worker_thread = AXIS2_THREAD_POOL_GET_THREAD(env->thread_pool,
-                worker_func, (void *)arg_list);
+                axis2_svr_thread_worker_func, (void *)arg_list);
         if (NULL == worker_thread)
         {
             AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Thread creation failed"
@@ -231,7 +231,7 @@
         }
         AXIS2_THREAD_POOL_THREAD_DETACH(env->thread_pool, worker_thread);
 #else
-        worker_func(NULL, (void *)arg_list);
+        axis2_svr_thread_worker_func(NULL, (void *)arg_list);
 #endif
     }
     return AXIS2_SUCCESS;
@@ -298,7 +298,7 @@
  * Thread worker function.
  */
 void *AXIS2_THREAD_FUNC
-worker_func(
+axis2_svr_thread_worker_func (
     axis2_thread_t *thd,
     void *data)
 {



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org