summaryrefslogtreecommitdiff
path: root/ace/IO_SAP.cpp
diff options
context:
space:
mode:
authordoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-10-13 01:21:57 +0000
committerdoccvs <doccvs@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-10-13 01:21:57 +0000
commit7160e530fc43393be47a655ce100e1fc125dc6d9 (patch)
tree05479c9b98febc8a45460fec03442753e5a81f0e /ace/IO_SAP.cpp
parent6aeced075745800ab99d5386488da57b1afa9b67 (diff)
downloadATCD-7160e530fc43393be47a655ce100e1fc125dc6d9.tar.gz
ChangeLogTag: Thu Oct 12 18:19:46 2000 Priyanka Gontla <pgontla@ece.uci.edu>
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: