summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-22 17:32:47 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-07-22 17:32:47 +0000
commitea74a39ac814b809ed1c6f590c336f7b9488a313 (patch)
tree774242b984573fd95004b51b6f6ebaf83e7aeb72 /tests
parent9cfe7c800da61458c63c8b228f7636d5b39dd587 (diff)
downloadATCD-ea74a39ac814b809ed1c6f590c336f7b9488a313.tar.gz
Changed method used to stop new_process'es execution from kill() to terminate() in order for NT to terminate elegantly.
Diffstat (limited to 'tests')
-rw-r--r--tests/Tokens_Test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Tokens_Test.cpp b/tests/Tokens_Test.cpp
index 2c5605c3065..4ef25f69d06 100644
--- a/tests/Tokens_Test.cpp
+++ b/tests/Tokens_Test.cpp
@@ -230,7 +230,7 @@ main (int, char *[])
ACE_OS::sleep (3);
// Kill the token server.
- if (new_process.kill () == -1)
+ if (new_process.terminate () == -1)
ACE_ERROR_RETURN ((LM_ERROR, "Kill failed.\n"), -1);
delete A;