summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-22 13:04:07 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-22 13:04:07 +0000
commitd86402c26f1cac40e265ac38a7c5d84ffb60aeac (patch)
tree03b0bfd8bcc71af78eb1ffe003d9a4873ddb70d0
parent57629dea7082d56795fc624e76fd82fb415cdc66 (diff)
downloadATCD-d86402c26f1cac40e265ac38a7c5d84ffb60aeac.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a5
-rw-r--r--tests/IOStream_Test.cpp10
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index a143a47c411..b3334db977d 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,3 +1,8 @@
+Mon Dec 22 07:03:13 1997 David L. Levine <levine@cs.wustl.edu>
+
+ * ace/IOStream_Test.cpp (spawn): changed printout from
+ "Process_Mutex_Test-children" to "IOStream_Test-children".
+
Mon Dec 22 03:08:22 1997 <nw1@DINGO>
* ace/OS.i: Modified ACE_OS::cond_* for WinCE.
diff --git a/tests/IOStream_Test.cpp b/tests/IOStream_Test.cpp
index 5db27322124..d88fe0471b3 100644
--- a/tests/IOStream_Test.cpp
+++ b/tests/IOStream_Test.cpp
@@ -215,15 +215,15 @@ client (void *arg = 0)
{
int eof = server.eof ();
if (eof)
- {
+ {
ACE_DEBUG ((LM_DEBUG, "(%P|%t) Unrecoverable stream error/eof\n"));
break;
- }
+ }
else
- {
+ {
ACE_DEBUG ((LM_DEBUG, "(%P|%t) Recoverable stream error (timeout)\n"));
server.clear (0);
- }
+ }
}
server >> f1;
@@ -405,7 +405,7 @@ spawn (void)
ACE_OS::_exit (-1);
case 0: // In child
{
- ACE_APPEND_LOG ("Process_Mutex_Test-children");
+ ACE_APPEND_LOG ("IOStream_Test-children");
ACE_INET_Addr server_addr;
if (acceptor.get_local_addr (server_addr) == -1)