summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-03 12:39:11 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-03 19:58:51 +0100
commit193eba85a9a6eff7c314f6afaaeff6bf3cff1399 (patch)
tree2f444ecda3aad8504299951eb388c8d262e5ce2f /lib/tevent/tevent.c
parente45ed828d042acca09cb1ed5b6dd7a24eb5e7ffd (diff)
downloadsamba-193eba85a9a6eff7c314f6afaaeff6bf3cff1399.tar.gz
samba-193eba85a9a6eff7c314f6afaaeff6bf3cff1399.tar.bz2
samba-193eba85a9a6eff7c314f6afaaeff6bf3cff1399.zip
tevent: add tevent_fd_set_auto_close()
tevent_fd_set_auto_close() is a simple wrapper arround tevent_fd_set_close_fn() with a callback that uses plain close(2). metze
Diffstat (limited to 'lib/tevent/tevent.c')
-rw-r--r--lib/tevent/tevent.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c
index 93918cc14d..5582b583e7 100644
--- a/lib/tevent/tevent.c
+++ b/lib/tevent/tevent.c
@@ -53,6 +53,7 @@
*/
#include "replace.h"
+#include "system/filesys.h"
#include "tevent.h"
#include "tevent_internal.h"
#include "tevent_util.h"
@@ -250,6 +251,19 @@ void tevent_fd_set_close_fn(struct tevent_fd *fde,
fde->event_ctx->ops->set_fd_close_fn(fde, close_fn);
}
+static void tevent_fd_auto_close_fn(struct tevent_context *ev,
+ struct tevent_fd *fde,
+ int fd,
+ void *private_data)
+{
+ close(fd);
+}
+
+void tevent_fd_set_auto_close(struct tevent_fd *fde)
+{
+ tevent_fd_set_close_fn(fde, tevent_fd_auto_close_fn);
+}
+
/*
return the fd event flags
*/