summaryrefslogtreecommitdiff
path: root/TAO/performance-tests
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-26 02:54:12 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-26 02:54:12 +0000
commitcadd08555f1fccdebd11179e3a8fe2c884835a54 (patch)
treeb6302bbdc7cc81579163a39a0009224ec2339f3e /TAO/performance-tests
parent244788aeb3b5494b2eefa00ea4a12e6c48d51800 (diff)
downloadATCD-cadd08555f1fccdebd11179e3a8fe2c884835a54.tar.gz
Replaced ACE_CHECK_RETURN with ACE_NOTREACHED when found after
ACE_ENDTRY in a non-void function.
Diffstat (limited to 'TAO/performance-tests')
-rw-r--r--TAO/performance-tests/Pluggable/PP_Test_Client.cpp8
-rw-r--r--TAO/performance-tests/Pluggable/server.cpp2
2 files changed, 5 insertions, 5 deletions
diff --git a/TAO/performance-tests/Pluggable/PP_Test_Client.cpp b/TAO/performance-tests/Pluggable/PP_Test_Client.cpp
index c5275befddb..a6c29523f01 100644
--- a/TAO/performance-tests/Pluggable/PP_Test_Client.cpp
+++ b/TAO/performance-tests/Pluggable/PP_Test_Client.cpp
@@ -296,7 +296,7 @@ PP_Test_Client::shutdown_server (int do_shutdown)
return -1;
}
ACE_ENDTRY;
- ACE_CHECK_RETURN (0);
+ ACE_NOTREACHED (return 0);
}
int
@@ -341,7 +341,7 @@ PP_Test_Client::run_oneway (void)
return -1;
}
ACE_ENDTRY;
- ACE_CHECK_RETURN (0);
+ ACE_NOTREACHED (return 0);
}
int
@@ -386,7 +386,7 @@ PP_Test_Client::run_void (void)
return -1;
}
ACE_ENDTRY;
- ACE_CHECK_RETURN (0);
+ ACE_NOTREACHED (return 0);
}
PP_Test_Client::~PP_Test_Client (void)
@@ -482,6 +482,6 @@ PP_Test_Client::init (int argc, char **argv)
return -1;
}
ACE_ENDTRY;
- ACE_CHECK_RETURN (0);
+ ACE_NOTREACHED (return 0);
}
diff --git a/TAO/performance-tests/Pluggable/server.cpp b/TAO/performance-tests/Pluggable/server.cpp
index 48ea090239e..d0e4690cec7 100644
--- a/TAO/performance-tests/Pluggable/server.cpp
+++ b/TAO/performance-tests/Pluggable/server.cpp
@@ -54,5 +54,5 @@ main (int argc, char *argv[])
}
ACE_ENDTRY;
ACE_TIMEPROBE_PRINT;
- ACE_CHECK_RETURN (0);
+ ACE_NOTREACHED (return 0);
}