]> git.llucax.com Git - software/eventxx.git/blobdiff - test/bench.cpp
Avoid a weird gcc warning when compiling with optimizations.
[software/eventxx.git] / test / bench.cpp
index a0980129df216ce6af15938940d60ac8d156bcfc..be6a8c73bba2c19e3fb5ae3921ea68b6167b7859 100644 (file)
@@ -30,7 +30,7 @@
  *     Added chain event propagation to improve the sensitivity of
  *     the measure respect to the event loop efficency.
  *
- * Wed 2006-12-27 - Modified by Leandro Lucarella <llucarella@integratech.com.ar>
+ * Wed 2006-12-27 - Modified by Leandro Lucarella <llucax+eventxx@gmail.com>
  *
  *     Adapted to test the C++ inteface.
  *
 #include <cerrno>
 #include <vector>
 
-#include <event>
+#include <eventxx>
 
 
 static int count, writes, fired;
 static int *pipes;
 static int num_pipes, num_active, num_writes;
-static std::vector< event::cevent* > events;
-static event::dispatcher d;
+static std::vector< eventxx::cevent* > events;
+static eventxx::dispatcher d;
 
 
 void
@@ -81,15 +81,15 @@ read_cb(int fd, short which, void *arg)
        }
 }
 
-event::time *
+eventxx::time *
 run_once(void)
 {
        int *cp, i, space;
-       static event::time ts, te;
+       static eventxx::time ts, te;
 
        for (cp = pipes, i = 0; i < num_pipes; i++, cp += 2) {
-               events.push_back(new event::cevent(cp[0], EV_READ | EV_PERSIST,
-                       read_cb, (void *) i));
+               events.push_back(new eventxx::cevent(cp[0],
+                       eventxx::READ | eventxx::PERSIST, read_cb, (void *) i));
                d.add(*events[i]);
        }
 
@@ -131,7 +131,7 @@ main (int argc, char **argv)
 {
        struct rlimit rl;
        int i, c;
-       event::time* tv;
+       eventxx::time* tv;
        int *cp;
        extern char *optarg;