summaryrefslogtreecommitdiff
path: root/ACE/ace/Event_Base.cpp
blob: 31e2249acf8685b61ed8aaa5addfe82bf1af02fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include "ace/Event_Base.h"

#if !defined (__ACE_INLINE__)
#include "ace/Event_Base.inl"
#endif /* __ACE_INLINE__ */

#include "ace/Log_Category.h"
#if defined (ACE_HAS_ALLOC_HOOKS)
# include "ace/Malloc_Base.h"
#endif /* ACE_HAS_ALLOC_HOOKS */

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_ALLOC_HOOK_DEFINE(ACE_Event_Base)

ACE_Event_Base::ACE_Event_Base ()
  : removed_ (false)
{
}

ACE_Event_Base::~ACE_Event_Base ()
{
  this->remove ();
}

int
ACE_Event_Base::remove ()
{
  int result = 0;
  if (!this->removed_)
    {
      this->removed_ = true;
      result = ACE_OS::event_destroy (&this->handle_);
    }
  return result;
}

int
ACE_Event_Base::wait ()
{
  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 ()
{
  return ACE_OS::event_signal (&this->handle_);
}

int
ACE_Event_Base::pulse ()
{
  return ACE_OS::event_pulse (&this->handle_);
}

int
ACE_Event_Base::reset ()
{
  return ACE_OS::event_reset (&this->handle_);
}

void
ACE_Event_Base::dump () 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