summaryrefslogtreecommitdiff
path: root/ace/Demux/POSIX_Proactor.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Demux/POSIX_Proactor.i')
-rw-r--r--ace/Demux/POSIX_Proactor.i20
1 files changed, 20 insertions, 0 deletions
diff --git a/ace/Demux/POSIX_Proactor.i b/ace/Demux/POSIX_Proactor.i
new file mode 100644
index 00000000000..e9935da90c9
--- /dev/null
+++ b/ace/Demux/POSIX_Proactor.i
@@ -0,0 +1,20 @@
+/* -*- 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;
+}
+
+ACE_INLINE
+ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_SIG_Proactor::get_impl_type (void)
+{
+ return PROACTOR_SIG;
+}