diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-13 05:32:08 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-10-13 05:32:08 +0000 |
commit | 41ef93a4b13d08bd67f42799d8a0bcdf991ddb8c (patch) | |
tree | f30ad9716060efc185a2aefe2e36b8efbeeb51eb /ace/High_Res_Timer.cpp | |
parent | 6da0041d8e9083c40dbdc8bc52d415897568b59a (diff) | |
download | ATCD-41ef93a4b13d08bd67f42799d8a0bcdf991ddb8c.tar.gz |
.
Diffstat (limited to 'ace/High_Res_Timer.cpp')
-rw-r--r-- | ace/High_Res_Timer.cpp | 34 |
1 files changed, 22 insertions, 12 deletions
diff --git a/ace/High_Res_Timer.cpp b/ace/High_Res_Timer.cpp index 136947ad1c3..14d9b850995 100644 --- a/ace/High_Res_Timer.cpp +++ b/ace/High_Res_Timer.cpp @@ -205,18 +205,28 @@ ACE_High_Res_Timer::dump (void) const start_incr_.hi (), start_incr_.lo ())); #else /* ! ACE_LACKS_LONGLONG_T */ ACE_DEBUG ((LM_DEBUG, - ASYS_TEXT (":\nstart_.hi (): %8x; start_.lo (): %8x;\n" - "end_.hi (): %8x; end_.lo (): %8x;\n" - "total_.hi (): %8x; total_.lo (): %8x;\n" - "start_incr_.hi () %8x; start_incr_.lo (): %8x;\n"), - ACE_static_cast (ACE_UINT32, start_ >> 32), - ACE_static_cast (ACE_UINT32, start_ & 0xfffffffful), - ACE_static_cast (ACE_UINT32, end_ >> 32), - ACE_static_cast (ACE_UINT32, end_ & 0xfffffffful), - ACE_static_cast (ACE_UINT32, total_ >> 32), - ACE_static_cast (ACE_UINT32, total_ & 0xfffffffful), - ACE_static_cast (ACE_UINT32, start_incr_ >> 32), - ACE_static_cast (ACE_UINT32, start_incr_ & 0xfffffffful))); + ASYS_TEXT (":\nstart_.hi (): %8x; start_.lo (): %8x;\n" + "end_.hi (): %8x; end_.lo (): %8x;\n" + "total_.hi (): %8x; total_.lo (): %8x;\n" + "start_incr_.hi () %8x; start_incr_.lo (): %8x;\n"), + start_ >> 32, + start_ & 0xfffffffful, + end_ >> 32, + end_ & 0xfffffffful, + total_ >> 32, + total_ & 0xfffffffful, + start_incr_ >> 32, + start_incr_ & 0xfffffffful)); +#if 0 + ACE_static_cast (ACE_UINT32, start_ >> 32), + ACE_static_cast (ACE_UINT32, start_ & 0xfffffffful), + ACE_static_cast (ACE_UINT32, end_ >> 32), + ACE_static_cast (ACE_UINT32, end_ & 0xfffffffful), + ACE_static_cast (ACE_UINT32, total_ >> 32), + ACE_static_cast (ACE_UINT32, total_ & 0xfffffffful), + ACE_static_cast (ACE_UINT32, start_incr_ >> 32), + ACE_static_cast (ACE_UINT32, start_incr_ & 0xfffffffful))); +#endif /* 0 */ #endif /* ! ACE_LACKS_LONGLONG_T */ ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP)); } |