summaryrefslogtreecommitdiff
path: root/ace/WFMO_Reactor.cpp
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-13 02:23:25 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-03-13 02:23:25 +0000
commitcb1e45c1301cb2aaa3365468cd368063fbe52b71 (patch)
tree7213668b58bd285bb3c55edfc4cc281502453e4e /ace/WFMO_Reactor.cpp
parent4e092fed2f4f5732b88c45deab45d96217e8754d (diff)
downloadATCD-cb1e45c1301cb2aaa3365468cd368063fbe52b71.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/WFMO_Reactor.cpp')
-rw-r--r--ace/WFMO_Reactor.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp
index d1c7043b35c..67733f38837 100644
--- a/ace/WFMO_Reactor.cpp
+++ b/ace/WFMO_Reactor.cpp
@@ -1930,6 +1930,7 @@ ACE_WFMO_Reactor_Notify::handle_signal (int signum,
switch (buffer->mask_)
{
case ACE_Event_Handler::READ_MASK:
+ case ACE_Event_Handler::ACCEPT_MASK:
result = buffer->eh_->handle_input (ACE_INVALID_HANDLE);
break;
case ACE_Event_Handler::WRITE_MASK:
@@ -1938,6 +1939,12 @@ ACE_WFMO_Reactor_Notify::handle_signal (int signum,
case ACE_Event_Handler::EXCEPT_MASK:
result = buffer->eh_->handle_exception (ACE_INVALID_HANDLE);
break;
+ case ACE_Event_Handler::QOS_MASK:
+ result = buffer->eh_->handle_qos (ACE_INVALID_HANDLE);
+ break;
+ case ACE_Event_Handler::GROUP_QOS_MASK:
+ result = buffer->eh_->handle_group_qos (ACE_INVALID_HANDLE);
+ break;
default:
ACE_ERROR ((LM_ERROR,
ASYS_TEXT ("invalid mask = %d\n"),