summaryrefslogtreecommitdiff
path: root/perf/remote_thr.cpp
diff options
context:
space:
mode:
authorMartin Lucina <mato@kotelna.sk>2010-09-08 15:25:45 +0200
committerMartin Lucina <martin@lucina.net>2012-01-23 08:53:27 +0100
commit90d73cba9cd1d1724f38ed82fc0eefb1781c9c20 (patch)
tree1760872164a93384d1adb90db9c8d41777dbb2a7 /perf/remote_thr.cpp
parentcf026feae205bfeb7e007f6afd0e8d7b283865c8 (diff)
parent5ba1cb20fe6f6699cef1cc726718e760cd4c9af1 (diff)
Imported Debian patch 2.0.9.dfsg-1debian/2.0.9.dfsg-1
Diffstat (limited to 'perf/remote_thr.cpp')
-rw-r--r--perf/remote_thr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/perf/remote_thr.cpp b/perf/remote_thr.cpp
index 002aaf2..1e69601 100644
--- a/perf/remote_thr.cpp
+++ b/perf/remote_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 [])
{
@@ -44,7 +44,7 @@ int main (int argc, char *argv [])
ctx = zmq_init (1);
if (!ctx) {
- printf ("error in zmq_recv: %s\n", zmq_strerror (errno));
+ printf ("error in zmq_init: %s\n", zmq_strerror (errno));
return -1;
}
@@ -81,7 +81,7 @@ int main (int argc, char *argv [])
}
}
- perf_sleep (10);
+ zmq_sleep (10);
rc = zmq_close (s);
if (rc != 0) {