mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 01:37:00 +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,76 +0,0 @@
|
|||
// $Id: Event_Base.cpp 96985 2013-04-11 15:50:32Z huangh $
|
||||
|
||||
#include "ace/Event_Base.h"
|
||||
|
||||
#if !defined (__ACE_INLINE__)
|
||||
#include "ace/Event_Base.inl"
|
||||
#endif /* __ACE_INLINE__ */
|
||||
|
||||
#include "ace/Log_Category.h"
|
||||
|
||||
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
||||
|
||||
ACE_Event_Base::ACE_Event_Base ()
|
||||
: removed_ (false)
|
||||
{
|
||||
}
|
||||
|
||||
ACE_Event_Base::~ACE_Event_Base (void)
|
||||
{
|
||||
this->remove ();
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Event_Base::remove (void)
|
||||
{
|
||||
int result = 0;
|
||||
if (!this->removed_)
|
||||
{
|
||||
this->removed_ = true;
|
||||
result = ACE_OS::event_destroy (&this->handle_);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Event_Base::wait (void)
|
||||
{
|
||||
return ACE_OS::event_wait (&this->handle_);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Event_Base::wait (const ACE_Time_Value *abstime, int use_absolute_time)
|
||||
{
|
||||
return ACE_OS::event_timedwait (&this->handle_,
|
||||
const_cast <ACE_Time_Value *> (abstime),
|
||||
use_absolute_time);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Event_Base::signal (void)
|
||||
{
|
||||
return ACE_OS::event_signal (&this->handle_);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Event_Base::pulse (void)
|
||||
{
|
||||
return ACE_OS::event_pulse (&this->handle_);
|
||||
}
|
||||
|
||||
int
|
||||
ACE_Event_Base::reset (void)
|
||||
{
|
||||
return ACE_OS::event_reset (&this->handle_);
|
||||
}
|
||||
|
||||
void
|
||||
ACE_Event_Base::dump (void) const
|
||||
{
|
||||
#if defined (ACE_HAS_DUMP)
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
|
||||
ACELIB_DEBUG ((LM_DEBUG, ACE_END_DUMP));
|
||||
#endif /* ACE_HAS_DUMP */
|
||||
}
|
||||
|
||||
ACE_END_VERSIONED_NAMESPACE_DECL
|
||||
Loading…
Add table
Add a link
Reference in a new issue