mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
Remove deps in prep for submodule
This commit is contained in:
parent
76889e9ad8
commit
5d25bdcc9f
2217 changed files with 0 additions and 591372 deletions
|
|
@ -1,122 +0,0 @@
|
|||
// $Id: Mutex.cpp 96985 2013-04-11 15:50:32Z huangh $
|
||||
|
||||
#include "ace/Mutex.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Mutex.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
#include "ace/Log_Category.h"
|
||||
#include "ace/OS_NS_string.h"
|
||||
#include "ace/os_include/sys/os_mman.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_ALLOC_HOOK_DEFINE(ACE_Mutex)
|
||||
|
||||
void
|
||||
ACE_Mutex::dump (void) const
|
||||
{
|
||||
#if defined (ACE_HAS_DUMP)
|
||||
// ACE_TRACE ("ACE_Mutex::dump");
|
||||
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
|
||||
#if defined (ACE_HAS_PTHREADS) || defined(ACE_HAS_STHREADS)
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("lockname_ = %s\n"), this->lockname_));
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("process_lock_ = %x\n"), this->process_lock_));
|
||||
#endif /* ACE_HAS_PTHREADS || ACE_HAS_STHREADS */
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_TEXT ("\n")));
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_END_DUMP));
|
||||
#endif /* ACE_HAS_DUMP */
|
||||
}
|
||||
|
||||
ACE_Mutex::ACE_Mutex (int type, const ACE_TCHAR *name,
|
||||
ACE_mutexattr_t *arg, mode_t mode)
|
||||
:
|
||||
#if defined (ACE_HAS_PTHREADS) || defined(ACE_HAS_STHREADS)
|
||||
process_lock_ (0),
|
||||
lockname_ (0),
|
||||
#endif /* ACE_HAS_PTHREADS || ACE_HAS_STHREADS */
|
||||
removed_ (false)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Mutex::ACE_Mutex");
|
||||
|
||||
// These platforms need process-wide mutex to be in shared memory.
|
||||
#if defined(ACE_HAS_PTHREADS) || defined (ACE_HAS_STHREADS)
|
||||
if (type == USYNC_PROCESS)
|
||||
{
|
||||
// Let's see if the shared memory entity already exists.
|
||||
ACE_HANDLE fd = ACE_OS::shm_open (name, O_RDWR | O_CREAT | O_EXCL, mode);
|
||||
if (fd == ACE_INVALID_HANDLE)
|
||||
{
|
||||
if (errno == EEXIST)
|
||||
fd = ACE_OS::shm_open (name, O_RDWR | O_CREAT, mode);
|
||||
else
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
// We own this shared memory object! Let's set its size.
|
||||
if (ACE_OS::ftruncate (fd,
|
||||
sizeof (ACE_mutex_t)) == -1)
|
||||
{
|
||||
ACE_OS::close (fd);
|
||||
return;
|
||||
}
|
||||
this->lockname_ = ACE_OS::strdup (name);
|
||||
if (this->lockname_ == 0)
|
||||
{
|
||||
ACE_OS::close (fd);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
this->process_lock_ =
|
||||
(ACE_mutex_t *) ACE_OS::mmap (0,
|
||||
sizeof (ACE_mutex_t),
|
||||
PROT_RDWR,
|
||||
MAP_SHARED,
|
||||
fd,
|
||||
0);
|
||||
ACE_OS::close (fd);
|
||||
if (this->process_lock_ == MAP_FAILED)
|
||||
return;
|
||||
|
||||
if (this->lockname_
|
||||
&& ACE_OS::mutex_init (this->process_lock_,
|
||||
type,
|
||||
name,
|
||||
arg) != 0)
|
||||
{
|
||||
ACELIB_ERROR ((LM_ERROR,
|
||||
ACE_TEXT ("%p\n"),
|
||||
ACE_TEXT ("ACE_Mutex::ACE_Mutex")));
|
||||
return;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// local mutex init if USYNC_PROCESS flag is not enabled.
|
||||
#else
|
||||
ACE_UNUSED_ARG (mode);
|
||||
#endif /* ACE_HAS_PTHREADS || ACE_HAS_STHREADS */
|
||||
|
||||
if (ACE_OS::mutex_init (&this->lock_,
|
||||
type,
|
||||
name,
|
||||
arg) != 0)
|
||||
ACELIB_ERROR ((LM_ERROR,
|
||||
ACE_TEXT ("%p\n"),
|
||||
ACE_TEXT ("ACE_Mutex::ACE_Mutex")));
|
||||
#if defined(ACE_HAS_PTHREADS) || defined (ACE_HAS_STHREADS)
|
||||
}
|
||||
#endif /* ACE_HAS_PTHREADS || ACE_HAS_STHREADS */
|
||||
}
|
||||
|
||||
ACE_Mutex::~ACE_Mutex (void)
|
||||
{
|
||||
// ACE_TRACE ("ACE_Mutex::~ACE_Mutex");
|
||||
this->remove ();
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Loading…
Add table
Add a link
Reference in a new issue