summaryrefslogtreecommitdiffstats
path: root/server/util
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2009-08-03 16:35:17 +0200
committerStephen Gallagher <sgallagh@redhat.com>2009-08-05 10:18:33 -0400
commit93becde0ff15d0a0b01ec477e9dfe641dd9569ea (patch)
tree964eb40e1030e9efcf7664c9148ea3e568c61bca /server/util
parent4a2370f8450dafefc11f890c799660a7b99da3e7 (diff)
downloadsssd-93becde0ff15d0a0b01ec477e9dfe641dd9569ea.tar.gz
sssd-93becde0ff15d0a0b01ec477e9dfe641dd9569ea.tar.xz
sssd-93becde0ff15d0a0b01ec477e9dfe641dd9569ea.zip
Consolidate tevent helpers
Diffstat (limited to 'server/util')
-rw-r--r--server/util/util.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/server/util/util.h b/server/util/util.h
index 02916c191..82c0be226 100644
--- a/server/util/util.h
+++ b/server/util/util.h
@@ -78,6 +78,31 @@ void debug_fn(const char *format, ...);
#define talloc_zfree(ptr) do { talloc_free(ptr); ptr = NULL; } while(0)
#endif
+/* TODO: remove later
+ * These functions are available in the latest tevent and are the ones that
+ * should be used as tevent_req is rightfully opaque there */
+#ifndef tevent_req_data
+#define tevent_req_data(req, type) ((type *)req->private_state)
+#endif
+
+#ifndef tevent_req_set_callback
+#define tevent_req_set_callback(req, func, data) \
+ do { req->async.fn = func; req->async.private_data = data; } while(0)
+#endif
+
+#ifndef tevent_req_callback_data
+#define tevent_req_callback_data(req, type) ((type *)req->async.private_data)
+#endif
+
+#ifndef tevent_req_notify_callback
+#define tevent_req_notify_callback(req) \
+ do { \
+ if (req->async.fn != NULL) { \
+ req->async.fn(req); \
+ } \
+ } while(0)
+#endif
+
#include "util/dlinklist.h"
/* From debug.c */