summaryrefslogtreecommitdiff
path: root/performance-tests
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-17 03:14:39 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-04-17 03:14:39 +0000
commit91583e8596d11df16bc8606d0a9cfd11711d1207 (patch)
tree823e54870bd5c60c66f684f75a3bbe589c996368 /performance-tests
parent37e8f812deed8c9f0c05a593f387b6d03c68c02f (diff)
downloadATCD-91583e8596d11df16bc8606d0a9cfd11711d1207.tar.gz
*** empty log message ***
Diffstat (limited to 'performance-tests')
-rw-r--r--performance-tests/Synch-Benchmarks/pipe_proc_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp b/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp
index 31a559052bd..aa9d90bc4b9 100644
--- a/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp
+++ b/performance-tests/Synch-Benchmarks/pipe_proc_test.cpp
@@ -64,7 +64,7 @@ Pipe_Proc_Test::svc (void)
ACE_HANDLE handle = this->pipe_handles[1];
char *from;
- ACE_NEW (from, char[length]);
+ ACE_NEW_RETURN (from, char[length], -1);
while (!this->done ())
if (ACE_OS::write (handle, from, length) == length)