From 314deb61851a0ddc37228d24e9f4eb106461370a Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Sun, 30 Aug 2009 15:47:39 +0200 Subject: build system for perf/C and perf/C++ --- perf/cpp/local_thr.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'perf/cpp/local_thr.cpp') diff --git a/perf/cpp/local_thr.cpp b/perf/cpp/local_thr.cpp index 576ac42..fdcbc8d 100644 --- a/perf/cpp/local_thr.cpp +++ b/perf/cpp/local_thr.cpp @@ -21,6 +21,8 @@ #include #include #include +#include +#include #include int main (int argc, char *argv []) @@ -32,7 +34,7 @@ int main (int argc, char *argv []) } const char *bind_to = argv [1]; int message_count = atoi (argv [2]); - int message_size = atoi (argv [3]); + size_t message_size = (size_t) atoi (argv [3]); zmq::context_t ctx (1, 1); @@ -59,10 +61,10 @@ int main (int argc, char *argv []) end.tv_sec -= start.tv_sec; start.tv_sec = 0; - long long elapsed = (end.tv_sec * 1000000 + end.tv_usec) - - (start.tv_sec * 1000000 + start.tv_usec); + uint64_t elapsed = ((uint64_t) end.tv_sec * 1000000 + end.tv_usec) - + ((uint64_t) start.tv_sec * 1000000 + start.tv_usec); - long long throughput = (long long) message_count * 1000000 / elapsed; + uint64_t throughput = (uint64_t) message_count * 1000000 / elapsed; printf ("message size: %d [B]\n", (int) message_size); printf ("message count: %d\n", (int) message_count); -- cgit v1.2.3