diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-08-14 07:03:12 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2004-08-14 07:03:12 +0000 |
commit | be31abeeb9bd47cea6406f48a12b005e1f81ad78 (patch) | |
tree | bd0d1a3d7e80466e5e8e99720d5dd1495ea99040 /ace/IPC_SAP.cpp | |
parent | 2a2b0abf3e8aa1340381a9270ecabc563e767e8a (diff) | |
download | ATCD-be31abeeb9bd47cea6406f48a12b005e1f81ad78.tar.gz |
ChangeLogTag:Fri Aug 13 23:26:56 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/IPC_SAP.cpp')
-rw-r--r-- | ace/IPC_SAP.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/IPC_SAP.cpp b/ace/IPC_SAP.cpp index 7bf4b6f0110..a67e8a2bd95 100644 --- a/ace/IPC_SAP.cpp +++ b/ace/IPC_SAP.cpp @@ -86,7 +86,7 @@ ACE_IPC_SAP::enable (int value) const if (ACE_OS::fcntl (this->handle_, F_SETOWN, ACE_IPC_SAP::pid_) == -1 - || ACE_Flag_Manip::set_flags (this->handle_, + || ACE::set_flags (this->handle_, FASYNC) == -1) return -1; break; @@ -104,7 +104,7 @@ ACE_IPC_SAP::enable (int value) const break; #endif /* F_SETFD */ case ACE_NONBLOCK: - if (ACE_Flag_Manip::set_flags (this->handle_, + if (ACE::set_flags (this->handle_, ACE_NONBLOCK) == ACE_INVALID_HANDLE) return -1; break; @@ -158,7 +158,7 @@ ACE_IPC_SAP::disable (int value) const if (ACE_OS::fcntl (this->handle_, F_SETOWN, 0) == -1 - || ACE_Flag_Manip::clr_flags (this->handle_, + || ACE::clr_flags (this->handle_, FASYNC) == -1) return -1; break; @@ -176,7 +176,7 @@ ACE_IPC_SAP::disable (int value) const break; #endif /* F_SETFD */ case ACE_NONBLOCK: - if (ACE_Flag_Manip::clr_flags (this->handle_, + if (ACE::clr_flags (this->handle_, ACE_NONBLOCK) == -1) return -1; break; |