summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-07 16:53:12 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-06-07 16:53:12 +0000
commit8f68ea5e4243e72bf62a413857236745bfd3b612 (patch)
tree768707e34b5ff0b0c3a1468896ce07b2ec542f68
parent7b3c8e3c8f02b5d0aebde92e1dae710071637960 (diff)
downloadATCD-8f68ea5e4243e72bf62a413857236745bfd3b612.tar.gz
(svc,cube_octet,do_test): added timestamps and an errno printout, for
debugging purposes. The errno printout should be removed later.
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp b/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
index 8c811be3f94..6074ebeb323 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/Task_Client.cpp
@@ -704,7 +704,7 @@ Client::svc (void)
// any further.
this->ts_->barrier_->wait ();
ACE_DEBUG ((LM_DEBUG,
- "(%t) Everyone's done, here I go!!\n"));
+ "(%t; %D) Everyone's done, here I go!!\n"));
if (this->ts_->oneway_ == 1)
ACE_DEBUG ((LM_DEBUG,
"(%t) **** USING ONEWAY CALLS ****\n"));
@@ -795,9 +795,12 @@ Client::cube_octet (void)
}
TAO_CATCHANY
{
+
+ ACE_OS::fprintf (stderr, "%s:%d, errno: %d\n", __FILE__, __LINE__, errno); // ????
+
TAO_TRY_ENV.print_exception ("call to cube_octet()\n");
ACE_ERROR_RETURN ((LM_ERROR,
- "%s: Call failed\n",
+ "(%t; %D) %s: Call failed\n",
TAO_TRY_ENV.exception ()),
-1);
}
@@ -1128,7 +1131,7 @@ Client::do_test (void)
}
} /* end of for () */
- ACE_DEBUG ((LM_DEBUG, "(%t) do_test executed %u iterations\n", i));
+ ACE_DEBUG ((LM_DEBUG, "(%t; %D) do_test executed %u iterations\n", i));
return 0;
}