summaryrefslogtreecommitdiff
path: root/performance-tests/UDP
diff options
context:
space:
mode:
authorfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-28 22:55:09 +0000
committerfhunleth <fhunleth@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-12-28 22:55:09 +0000
commit3ba704cd4f58e453ff225607ae6b1f327694e999 (patch)
tree484851a840d6c91bf33fc7895389d89e23312c04 /performance-tests/UDP
parentbb5cc9c1034e519d8d4433fc379e4bff11ec1aaa (diff)
downloadATCD-3ba704cd4f58e453ff225607ae6b1f327694e999.tar.gz
ChangeLogTag: Thu Dec 28 16:10:59 2000 Frank Hunleth <fhunleth@cs.wustl.edu>
Diffstat (limited to 'performance-tests/UDP')
-rw-r--r--performance-tests/UDP/udp_test.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/performance-tests/UDP/udp_test.cpp b/performance-tests/UDP/udp_test.cpp
index 145e904bf81..45fa0988950 100644
--- a/performance-tests/UDP/udp_test.cpp
+++ b/performance-tests/UDP/udp_test.cpp
@@ -258,9 +258,15 @@ Client::run (void)
if (i < 0 )
{
+#ifndef ACE_LACKS_LONGLONG_T
ACE_DEBUG ((LM_DEBUG,
"Ignoring first sample of %u usecs\n",
- (ACE_UINT32) (sample)));
+ (ACE_UINT32) (sample)));
+#else
+ ACE_DEBUG ((LM_DEBUG,
+ "Ignoring first sample of %u usecs\n",
+ (ACE_UINT32) (sample.lo())));
+#endif
continue;
}
else if (max_allow > 0 && sample > max_allow)