summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_select.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_select.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_select.c')
-rw-r--r--lib/tevent/tevent_select.c20
1 files changed, 1 insertions, 19 deletions
diff --git a/lib/tevent/tevent_select.c b/lib/tevent/tevent_select.c
index b666b4fba4..1c295d7ca4 100644
--- a/lib/tevent/tevent_select.c
+++ b/lib/tevent/tevent_select.c
@@ -223,24 +223,6 @@ static int select_event_loop_once(struct tevent_context *ev, const char *locatio
return select_event_loop_select(select_ev, &tval);
}
-/*
- return on failure or (with 0) if all fd events are removed
-*/
-static int select_event_loop_wait(struct tevent_context *ev, const char *location)
-{
- struct select_event_context *select_ev = talloc_get_type(ev->additional_data,
- struct select_event_context);
- select_ev->exit_code = 0;
-
- while (ev->fd_events && select_ev->exit_code == 0) {
- if (select_event_loop_once(ev, location) != 0) {
- break;
- }
- }
-
- return select_ev->exit_code;
-}
-
static const struct tevent_ops select_event_ops = {
.context_init = select_event_context_init,
.add_fd = select_event_add_fd,
@@ -250,7 +232,7 @@ static const struct tevent_ops select_event_ops = {
.add_timer = tevent_common_add_timer,
.add_signal = tevent_common_add_signal,
.loop_once = select_event_loop_once,
- .loop_wait = select_event_loop_wait,
+ .loop_wait = tevent_common_loop_wait,
};
bool tevent_select_init(void)