mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[10643] Update the ACE part we use to 5.8.2
Signed-off-by: Neo2003 <Neo.2003@Hotmail.fr>
This commit is contained in:
parent
8f71d95c0d
commit
23c920ca4b
739 changed files with 22031 additions and 40373 deletions
|
|
@ -1,4 +1,4 @@
|
|||
// $Id: Service_Object.cpp 81826 2008-06-02 15:29:53Z schmidt $
|
||||
// $Id: Service_Object.cpp 91286 2010-08-05 09:04:31Z johnnyw $
|
||||
|
||||
#include "ace/config-all.h"
|
||||
|
||||
|
|
@ -17,16 +17,12 @@
|
|||
# include "ace/Lib_Find.h"
|
||||
#endif
|
||||
|
||||
ACE_RCSID (ace,
|
||||
Service_Object,
|
||||
"$Id: Service_Object.cpp 81826 2008-06-02 15:29:53Z schmidt $")
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Object)
|
||||
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type)
|
||||
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type)
|
||||
|
||||
void
|
||||
void
|
||||
ACE_Service_Type::dump (void) const
|
||||
{
|
||||
#if defined (ACE_HAS_DUMP)
|
||||
|
|
@ -111,6 +107,9 @@ ACE_Service_Type::fini (void)
|
|||
|
||||
int ret = this->type_->fini ();
|
||||
|
||||
// Ensure type is 0 to prevent invalid access after call to fini.
|
||||
this->type_ = 0;
|
||||
|
||||
// Ensure that closing the DLL is done after type_->fini() as it may
|
||||
// require access to the code for the service object destructor,
|
||||
// which resides in the DLL
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue