diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-17 03:14:39 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-04-17 03:14:39 +0000 |
commit | cc0c52276db0220c4267f83f35c40aa56b2cb476 (patch) | |
tree | 823e54870bd5c60c66f684f75a3bbe589c996368 /performance-tests/Synch-Benchmarks | |
parent | 308923fc00c5fc1676876eba2b60c8e23d972bd2 (diff) | |
download | ATCD-cc0c52276db0220c4267f83f35c40aa56b2cb476.tar.gz |
*** empty log message ***
Diffstat (limited to 'performance-tests/Synch-Benchmarks')
-rw-r--r-- | performance-tests/Synch-Benchmarks/pipe_proc_test.cpp | 2 |
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) |