summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_standard.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-03-16 14:15:07 +0100
committerStefan Metzmacher <metze@samba.org>2009-03-17 19:58:57 +0100
commit940e61846e97ba62153d5b977b0823f196607743 (patch)
tree22e0442255cd2d6eca42b6f260a7436c8181a716 /lib/tevent/tevent_standard.c
parent0139befb915006d6ec9fec2734057c5c50b3c383 (diff)
downloadsamba-940e61846e97ba62153d5b977b0823f196607743.tar.gz
samba-940e61846e97ba62153d5b977b0823f196607743.tar.bz2
samba-940e61846e97ba62153d5b977b0823f196607743.zip
tevent: add tevent_common_loop_wait() helper function and use it
tevent_loop_wait should do the same for all backends. It should loop as long as we have pending events. metze
Diffstat (limited to 'lib/tevent/tevent_standard.c')
-rw-r--r--lib/tevent/tevent_standard.c20
1 files changed, 1 insertions, 19 deletions
diff --git a/lib/tevent/tevent_standard.c b/lib/tevent/tevent_standard.c
index 40a08d7ab0..88db6a1725 100644
--- a/lib/tevent/tevent_standard.c
+++ b/lib/tevent/tevent_standard.c
@@ -543,24 +543,6 @@ static int std_event_loop_once(struct tevent_context *ev, const char *location)
return std_event_loop_select(std_ev, &tval);
}
-/*
- return on failure or (with 0) if all fd events are removed
-*/
-static int std_event_loop_wait(struct tevent_context *ev, const char *location)
-{
- struct std_event_context *std_ev = talloc_get_type(ev->additional_data,
- struct std_event_context);
- std_ev->exit_code = 0;
-
- while (ev->fd_events && std_ev->exit_code == 0) {
- if (std_event_loop_once(ev, location) != 0) {
- break;
- }
- }
-
- return std_ev->exit_code;
-}
-
static const struct tevent_ops std_event_ops = {
.context_init = std_event_context_init,
.add_fd = std_event_add_fd,
@@ -570,7 +552,7 @@ static const struct tevent_ops std_event_ops = {
.add_timer = tevent_common_add_timer,
.add_signal = tevent_common_add_signal,
.loop_once = std_event_loop_once,
- .loop_wait = std_event_loop_wait,
+ .loop_wait = tevent_common_loop_wait,
};