]> git.llucax.com Git - software/libev.git/blobdiff - ev++.h
first try at embed watchers
[software/libev.git] / ev++.h
diff --git a/ev++.h b/ev++.h
index 48c3a93073d7471726f7d365c9dd0ac1bee3edca..82b65b9453f656e687e736306e90fe842e7d76e7 100644 (file)
--- a/ev++.h
+++ b/ev++.h
@@ -95,13 +95,11 @@ namespace ev {
    * so a macro solution was chosen */
   #define EV_BEGIN_WATCHER(cppstem,cstem)                                              \
                                                                                         \
    * so a macro solution was chosen */
   #define EV_BEGIN_WATCHER(cppstem,cstem)                                              \
                                                                                         \
-  static void cb_ ## cppstem (struct ev_ ## cstem *w, int revents);                     \
-                                                                                        \
   struct cppstem : ev_ ## cstem, callback<cppstem>                                      \
   {                                                                                     \
     EV_CONSTRUCT (cppstem)                                                              \
     {                                                                                   \
   struct cppstem : ev_ ## cstem, callback<cppstem>                                      \
   {                                                                                     \
     EV_CONSTRUCT (cppstem)                                                              \
     {                                                                                   \
-      ev_init (static_cast<ev_ ## cstem *>(this), cb_ ## cppstem);                      \
+      ev_init (static_cast<ev_ ## cstem *>(this), thunk);                               \
     }                                                                                   \
                                                                                         \
     bool is_active () const                                                             \
     }                                                                                   \
                                                                                         \
     bool is_active () const                                                             \
@@ -139,17 +137,18 @@ namespace ev {
     cppstem (const cppstem &o)                                                         \
     : callback<cppstem> (this, (void (cppstem::*)(cppstem &, int))0)                    \
     { /* disabled */ }                                                                 \
     cppstem (const cppstem &o)                                                         \
     : callback<cppstem> (this, (void (cppstem::*)(cppstem &, int))0)                    \
     { /* disabled */ }                                                                 \
+                                                                                        \
     void operator =(const cppstem &o) { /* disabled */ }                                \
                                                                                         \
     void operator =(const cppstem &o) { /* disabled */ }                                \
                                                                                         \
+    static void thunk (EV_P_ struct ev_ ## cstem *w, int revents)                       \
+    {                                                                                   \
+      (*static_cast<cppstem *>(w))(revents);                                            \
+    }                                                                                   \
+                                                                                        \
   public:
 
   #define EV_END_WATCHER(cppstem,cstem)                                                        \
   public:
 
   #define EV_END_WATCHER(cppstem,cstem)                                                        \
-  };                                                                                    \
-                                                                                        \
-  static void cb_ ## cppstem (struct ev_ ## cstem *w, int revents)                      \
-  {                                                                                     \
-    (*static_cast<cppstem *>(w))(revents);                                              \
-  }
+  };
 
   EV_BEGIN_WATCHER (io, io)
     void set (int fd, int events)
 
   EV_BEGIN_WATCHER (io, io)
     void set (int fd, int events)