summaryrefslogtreecommitdiff
path: root/performance-tests
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-21 18:13:59 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-08-21 18:13:59 +0000
commit170031ebe4ae3a55e18ed72cccc101590dc8ba8a (patch)
treeae65e39b5ac00fd394214a6d0640d2284cbae14c /performance-tests
parent3b62b31a98fb98225a183690d2113194d377feea (diff)
downloadATCD-170031ebe4ae3a55e18ed72cccc101590dc8ba8a.tar.gz
ChangeLogTag:Thu Aug 21 13:08:43 1997 Carlos O'Ryan <coryan@swarm.cs.wustl.edu>
Diffstat (limited to 'performance-tests')
-rw-r--r--performance-tests/Misc/childbirth_time.cpp3
-rw-r--r--performance-tests/Synch-Benchmarks/Makefile1
2 files changed, 2 insertions, 2 deletions
diff --git a/performance-tests/Misc/childbirth_time.cpp b/performance-tests/Misc/childbirth_time.cpp
index 9772bfd3c8a..66422bcb492 100644
--- a/performance-tests/Misc/childbirth_time.cpp
+++ b/performance-tests/Misc/childbirth_time.cpp
@@ -137,9 +137,10 @@ prof_fork (size_t iteration)
{
case -1:
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "process.spawn"), -1);
- break;
+ /* NOTREACHED */
case 0:
exit (0);
+ /* NOTREACHED */
break;
default:
ptimer.stop ();
diff --git a/performance-tests/Synch-Benchmarks/Makefile b/performance-tests/Synch-Benchmarks/Makefile
index 94b26845a7e..c783d9e2b17 100644
--- a/performance-tests/Synch-Benchmarks/Makefile
+++ b/performance-tests/Synch-Benchmarks/Makefile
@@ -35,7 +35,6 @@ LOBJ = $(LSRC:%.cpp=$(VDIR)%.o)
SHOBJ = $(addsuffix .so,$(FILES))
LDLIBS = -lSynch_Tests
-LIBS += -lACE
VLDLIBS = $(LDLIBS:%=%$(VAR))