diff options
author | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-04-18 19:13:26 +0000 |
---|---|---|
committer | oci <oci@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-04-18 19:13:26 +0000 |
commit | 9de786cf3ced8f2a630050388f19432032edd5e7 (patch) | |
tree | 6f516391243b996e4483d9713fbe5aec0bddeb3e /ace | |
parent | 6805febc52d00d1299856297cd280246bc0e4373 (diff) | |
download | ATCD-9de786cf3ced8f2a630050388f19432032edd5e7.tar.gz |
ChangeLogTag: Wed Apr 18 13:57:40 2001 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ace')
-rw-r--r-- | ace/ACE.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp index fded2a0961a..b4a4bab492a 100644 --- a/ace/ACE.cpp +++ b/ace/ACE.cpp @@ -1490,7 +1490,7 @@ ACE::send_n_i (ACE_HANDLE handle, if (n == -1) { // Check for possible blocking. - if (errno == EWOULDBLOCK) + if (errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait for the blocking to subside. int result = ACE::handle_write_ready (handle, @@ -1548,7 +1548,7 @@ ACE::send_n_i (ACE_HANDLE handle, { // Check for possible blocking. if (n == -1 && - errno == EWOULDBLOCK) + errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait upto <timeout> for the blocking to subside. int rtn = ACE::handle_write_ready (handle, @@ -1610,7 +1610,7 @@ ACE::t_snd_n_i (ACE_HANDLE handle, if (n == -1) { // Check for possible blocking. - if (errno == EWOULDBLOCK) + if (errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait for the blocking to subside. int result = ACE::handle_write_ready (handle, @@ -1668,7 +1668,7 @@ ACE::t_snd_n_i (ACE_HANDLE handle, { // Check for possible blocking. if (n == -1 && - errno == EWOULDBLOCK) + errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait upto <timeout> for the blocking to subside. int rtn = ACE::handle_write_ready (handle, @@ -1728,7 +1728,7 @@ ACE::send_n_i (ACE_HANDLE handle, if (n == -1) { // Check for possible blocking. - if (errno == EWOULDBLOCK) + if (errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait for the blocking to subside. int result = ACE::handle_write_ready (handle, @@ -1784,7 +1784,7 @@ ACE::send_n_i (ACE_HANDLE handle, { // Check for possible blocking. if (n == -1 && - errno == EWOULDBLOCK) + errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait upto <timeout> for the blocking to subside. int rtn = ACE::handle_write_ready (handle, @@ -1908,7 +1908,7 @@ ACE::sendv_n_i (ACE_HANDLE handle, if (n == -1) { // Check for possible blocking. - if (errno == EWOULDBLOCK) + if (errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait for the blocking to subside. int result = ACE::handle_write_ready (handle, @@ -1981,7 +1981,7 @@ ACE::sendv_n_i (ACE_HANDLE handle, { // Check for possible blocking. if (n == -1 && - errno == EWOULDBLOCK) + errno == EWOULDBLOCK || errno == ENOBUFS) { // Wait upto <timeout> for the blocking to subside. int rtn = ACE::handle_write_ready (handle, |