summaryrefslogtreecommitdiffstats
path: root/lib/tevent/tevent.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-06-19 20:55:46 +0200
committerVolker Lendecke <vlendec@samba.org>2011-06-20 12:33:24 +0200
commitc2a826b10c403e1b4d7e6da1b41c89ed01d07f40 (patch)
tree0b4d34a6123044432982bd087c60f4b5608fb78b /lib/tevent/tevent.h
parent580fedc321d0a7a11454ad633736101050ef13df (diff)
downloadsamba-c2a826b10c403e1b4d7e6da1b41c89ed01d07f40.tar.gz
samba-c2a826b10c403e1b4d7e6da1b41c89ed01d07f40.tar.xz
samba-c2a826b10c403e1b4d7e6da1b41c89ed01d07f40.zip
tevent: Add tevent_req_oom
This is a replacement for tevent_req_nomem(NULL, req)
Diffstat (limited to 'lib/tevent/tevent.h')
-rw-r--r--lib/tevent/tevent.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/tevent/tevent.h b/lib/tevent/tevent.h
index 38a4a9c5037..8204a28fbed 100644
--- a/lib/tevent/tevent.h
+++ b/lib/tevent/tevent.h
@@ -995,6 +995,20 @@ bool _tevent_req_nomem(const void *p,
_tevent_req_nomem(p, req, __location__)
#endif
+#ifdef DOXYGEN
+/**
+ * @brief Indicate out of memory to a request
+ *
+ * @param[in] req The request being processed.
+ */
+void tevent_req_oom(struct tevent_req *req);
+#else
+void _tevent_req_oom(struct tevent_req *req,
+ const char *location);
+#define tevent_req_oom(req) \
+ _tevent_req_oom(req, __location__)
+#endif
+
/**
* @brief Finish a request before the caller had the change to set the callback.
*