summaryrefslogtreecommitdiff
path: root/ace/config-all.h
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-05-26 18:08:47 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-05-26 18:08:47 +0000
commit25235f5017690551c69325fec3e9e2da0add7446 (patch)
treee9cb37531e5501b1a7a1e0201cf7e16f500155a9 /ace/config-all.h
parent979516614bb95c95bef913d53fb737e4787155f9 (diff)
downloadATCD-25235f5017690551c69325fec3e9e2da0add7446.tar.gz
ChangeLogTag:Thu May 25 19:39:59 2000 Ossama Othman <ossama@uci.edu>
Diffstat (limited to 'ace/config-all.h')
-rw-r--r--ace/config-all.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/config-all.h b/ace/config-all.h
index daf1fc0ac1f..b4f75722c84 100644
--- a/ace/config-all.h
+++ b/ace/config-all.h
@@ -402,13 +402,13 @@ extern int t_errno;
# define ACE_OSCALL(OP,TYPE,FAILVALUE,RESULT) \
do \
RESULT = (TYPE) OP; \
- while (RESULT == FAILVALUE && errno == EINTR && ACE_LOG_MSG->restart ())
+ while (RESULT == FAILVALUE && errno == EINTR)
# define ACE_OSCALL_RETURN(OP,TYPE,FAILVALUE) \
do { \
TYPE ace_result_; \
do \
ace_result_ = (TYPE) OP; \
- while (ace_result_ == FAILVALUE && errno == EINTR && ACE_LOG_MSG->restart ()); \
+ while (ace_result_ == FAILVALUE && errno == EINTR); \
return ace_result_; \
} while (0)
# elif defined (ACE_WIN32)