summaryrefslogtreecommitdiff
path: root/ace/IO_SAP.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/IO_SAP.cpp')
-rw-r--r--ace/IO_SAP.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/IO_SAP.cpp b/ace/IO_SAP.cpp
index 09146c11940..f3ad46c46b7 100644
--- a/ace/IO_SAP.cpp
+++ b/ace/IO_SAP.cpp
@@ -65,7 +65,7 @@ ACE_IO_SAP::enable (int value) const
if (ACE_OS::fcntl (this->handle_,
F_SETOWN,
ACE_IO_SAP::pid_) == -1
- || ACE::set_flags (this->handle_,
+ || ACE_Flag_Manip::set_flags (this->handle_,
FASYNC) == -1)
return -1;
break;
@@ -76,7 +76,7 @@ ACE_IO_SAP::enable (int value) const
ACE_NOTSUP_RETURN (-1);
#endif /* SIGIO <== */
case ACE_NONBLOCK:
- if (ACE::set_flags (this->handle_,
+ if (ACE_Flag_Manip::set_flags (this->handle_,
ACE_NONBLOCK) == -1)
return -1;
break;
@@ -117,7 +117,7 @@ ACE_IO_SAP::disable (int value) const
if (ACE_OS::fcntl (this->handle_,
F_SETOWN,
0) == -1
- || ACE::clr_flags (this->handle_, FASYNC) == -1)
+ || ACE_Flag_Manip::clr_flags (this->handle_, FASYNC) == -1)
return -1;
break;
#else
@@ -127,8 +127,8 @@ ACE_IO_SAP::disable (int value) const
ACE_NOTSUP_RETURN (-1);
#endif /* SIGIO <== */
case ACE_NONBLOCK:
- if (ACE::clr_flags (this->handle_,
- ACE_NONBLOCK) == -1)
+ if (ACE_Flag_Manip::clr_flags (this->handle_,
+ ACE_NONBLOCK) == -1)
return -1;
break;
default: