diff options
Diffstat (limited to 'perf/local_thr.cpp')
-rw-r--r-- | perf/local_thr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/perf/local_thr.cpp b/perf/local_thr.cpp index 8480ebd..016826b 100644 --- a/perf/local_thr.cpp +++ b/perf/local_thr.cpp @@ -18,9 +18,9 @@ */ #include "../include/zmq.h" +#include "../include/zmq_utils.h" #include <stdio.h> #include <stdlib.h> -#include "helpers.h" int main (int argc, char *argv []) { @@ -47,7 +47,7 @@ int main (int argc, char *argv []) ctx = zmq_init (1); if (!ctx) { - printf ("error in zmq_send: %s\n", zmq_strerror (errno)); + printf ("error in zmq_init: %s\n", zmq_strerror (errno)); return -1; } @@ -88,7 +88,7 @@ int main (int argc, char *argv []) return -1; } - watch = stopwatch_start (); + watch = zmq_stopwatch_start (); for (i = 0; i != message_count - 1; i++) { rc = zmq_recv (s, &msg, 0); @@ -102,7 +102,7 @@ int main (int argc, char *argv []) } } - elapsed = stopwatch_stop (watch); + elapsed = zmq_stopwatch_stop (watch); if (elapsed == 0) elapsed = 1; |