diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-25 04:21:34 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-25 04:21:34 +0000 |
commit | dc476cc5714b82b63a589d89e1e1fd7c21c2bc08 (patch) | |
tree | 05c47ea47a081a3f68b4520c97988c3fe584a699 /examples/Misc/test_profile_timer.cpp | |
parent | e486fcdb2329b833f1b488a44b8da23e358b754f (diff) | |
download | ATCD-AV_DEMO_1.tar.gz |
This commit was manufactured by cvs2svn to create tag 'AV_DEMO_1'.AV_DEMO_1
Diffstat (limited to 'examples/Misc/test_profile_timer.cpp')
-rw-r--r-- | examples/Misc/test_profile_timer.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/examples/Misc/test_profile_timer.cpp b/examples/Misc/test_profile_timer.cpp deleted file mode 100644 index 366876a42a5..00000000000 --- a/examples/Misc/test_profile_timer.cpp +++ /dev/null @@ -1,33 +0,0 @@ -#include "ace/Profile_Timer.h" -// $Id$ - - - -static const int DEFAULT_ITERATIONS = 100000000; - -int -main (int argc, char *argv[]) -{ - ACE_Profile_Timer timer; - int iterations = argc > 1 ? ACE_OS::atoi (argv[1]) : DEFAULT_ITERATIONS; - - timer.start (); - - for (int i = 0; i < iterations; i++) - ACE_OS::getpid (); - - timer.stop (); - - ACE_Profile_Timer::ACE_Elapsed_Time et; - - timer.elapsed_time (et); - - ACE_DEBUG ((LM_DEBUG, "iterations = %d\n", iterations)); - ACE_DEBUG ((LM_DEBUG, "real time = %f secs, user time = %f secs, system time = %f secs\n", - et.real_time, et.user_time, et.system_time)); - - ACE_DEBUG ((LM_DEBUG, "time per call = %f usecs\n", - (et.real_time / double (iterations)) * 1000000)); - return 0; -} - |