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 ka...@apache.org on 2006/09/25 11:19:18 UTC

svn commit: r449619 - /webservices/axis2/trunk/c/modules/core/context/conf_ctx.c

Author: kaushalye
Date: Mon Sep 25 02:19:17 2006
New Revision: 449619

URL: http://svn.apache.org/viewvc?view=rev&rev=449619
Log:
Applying patch for multiple unlocking of mutex - JIRA AXIS2C-303

Modified:
    webservices/axis2/trunk/c/modules/core/context/conf_ctx.c

Modified: webservices/axis2/trunk/c/modules/core/context/conf_ctx.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/context/conf_ctx.c?view=diff&rev=449619&r1=449618&r2=449619
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/conf_ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/conf_ctx.c Mon Sep 25 02:19:17 2006
@@ -374,7 +374,7 @@
         rv = (axis2_op_ctx_t*)axis2_hash_get(conf_ctx_impl->op_ctx_map,
                 message_id, AXIS2_HASH_KEY_STRING);
 
-        axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
+        /*axis2_thread_mutex_unlock(conf_ctx_impl->mutex);*/
     }
     axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
     return rv;
@@ -419,7 +419,7 @@
     {
         rv = (axis2_svc_ctx_t*)axis2_hash_get(conf_ctx_impl->svc_ctx_map,
                 svc_id, AXIS2_HASH_KEY_STRING);
-        axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
+        /*axis2_thread_mutex_unlock(conf_ctx_impl->mutex);*/
     }
     axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
     return rv;
@@ -464,7 +464,7 @@
     {
         rv = (axis2_svc_grp_ctx_t*)axis2_hash_get(conf_ctx_impl->svc_grp_ctx_map
                 , svc_grp_id, AXIS2_HASH_KEY_STRING);
-        axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
+        /*axis2_thread_mutex_unlock(conf_ctx_impl->mutex);*/
     }
     axis2_thread_mutex_unlock(conf_ctx_impl->mutex);
     return rv;



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