blob: c5e80b4994316fcf723f8db80209bd98141423f0 (
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
|
/* -*- C++ -*- */
// $Id$
ACE_INLINE
ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_Proactor::get_impl_type (void)
{
return PROACTOR_POSIX;
}
ACE_INLINE
ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_AIOCB_Proactor::get_impl_type (void)
{
return PROACTOR_AIOCB;
}
#if defined(ACE_HAS_POSIX_REALTIME_SIGNALS)
ACE_INLINE
ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_SIG_Proactor::get_impl_type (void)
{
return PROACTOR_SIG;
}
#endif /* ACE_HAS_POSIX_REALTIME_SIGNALS */
ACE_INLINE
ACE_Asynch_Pseudo_Task& ACE_POSIX_Proactor::get_asynch_pseudo_task (void)
{
return this->pseudo_task_;
}
|