From 5743277ed6297ce77afcdb7b336c8929c83af8a3 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:58:40 +0100 Subject: s3:nmbd: s/struct event_context/struct tevent_context Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/include/event.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/include/event.h') diff --git a/source3/include/event.h b/source3/include/event.h index 86af6fe478..d5decaa669 100644 --- a/source3/include/event.h +++ b/source3/include/event.h @@ -23,9 +23,9 @@ /* The following definitions come from lib/events.c */ struct pollfd; -struct timeval *get_timed_events_timeout(struct event_context *event_ctx, +struct timeval *get_timed_events_timeout(struct tevent_context *event_ctx, struct timeval *to_ret); -void dump_event_list(struct event_context *event_ctx); +void dump_event_list(struct tevent_context *event_ctx); struct tevent_context *s3_tevent_context_init(TALLOC_CTX *mem_ctx); bool event_add_to_poll_args(struct tevent_context *ev, TALLOC_CTX *mem_ctx, @@ -34,7 +34,7 @@ bool event_add_to_poll_args(struct tevent_context *ev, TALLOC_CTX *mem_ctx, bool run_events_poll(struct tevent_context *ev, int pollrtn, struct pollfd *pfds, int num_pfds); -struct idle_event *event_add_idle(struct event_context *event_ctx, +struct idle_event *event_add_idle(struct tevent_context *event_ctx, TALLOC_CTX *mem_ctx, struct timeval interval, const char *name, -- cgit