mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-25 14:46:24 +00:00
Directory Structure [step 1]: moving files
working on #672 NOTE: This commit can't be compiled!!
This commit is contained in:
74
deps/acelite/ace/Event_Base.cpp
vendored
Normal file
74
deps/acelite/ace/Event_Base.cpp
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user