You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "nadir amra (JIRA)" <ax...@ws.apache.org> on 2007/01/18 06:13:30 UTC

[jira] Closed: (AXISCPP-979) lock() / unlock() mismatch in engine/HandlerLoader.cpp

     [ https://issues.apache.org/jira/browse/AXISCPP-979?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

nadir amra closed AXISCPP-979.
------------------------------


> lock() / unlock() mismatch in engine/HandlerLoader.cpp
> ------------------------------------------------------
>
>                 Key: AXISCPP-979
>                 URL: https://issues.apache.org/jira/browse/AXISCPP-979
>             Project: Axis-C++
>          Issue Type: Bug
>          Components: Server - Engine
>    Affects Versions: current (nightly)
>            Reporter: Henrik Nordberg
>         Assigned To: Henrik Nordberg
>            Priority: Minor
>             Fix For:  1.6 Beta
>
>
> In
> int HandlerLoader::createHandler (BasicHandler** pHandler, int nLibId)
> there is this code:
>     //lock ();
>  Lock l(this);
> and later this code:
>     unlock ();
> I assume the unlock() call should be commented out, as this is the case in other places. ~Lock() releases the mutex it acquired in Lock() so an explicit call to l.unlock() (as in other places in that file) should not be needed.
> Also, as a side note, it would be better to use critical sections on Windows, since mutexes on that platform are cross process and slow.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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