summaryrefslogtreecommitdiff
path: root/lib/tevent/tevent_internal.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-02 13:35:32 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-02 18:16:51 +0100
commitd9529a331afaf1c82b24becc1d0d245e19d518aa (patch)
tree8261ffb5befdead63b2d8a2f5476309b0e850351 /lib/tevent/tevent_internal.h
parent0a73e8b334d2b9f5e8032c685d78b6425a9fa5e7 (diff)
downloadsamba-d9529a331afaf1c82b24becc1d0d245e19d518aa.tar.gz
samba-d9529a331afaf1c82b24becc1d0d245e19d518aa.tar.bz2
samba-d9529a331afaf1c82b24becc1d0d245e19d518aa.zip
tevent: rename event_register_backend() => tevent_register_backend()
And fix the callers and there init functions. metze
Diffstat (limited to 'lib/tevent/tevent_internal.h')
-rw-r--r--lib/tevent/tevent_internal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/tevent/tevent_internal.h b/lib/tevent/tevent_internal.h
index 2d6909da36..a439c62743 100644
--- a/lib/tevent/tevent_internal.h
+++ b/lib/tevent/tevent_internal.h
@@ -132,7 +132,7 @@ struct tevent_context {
};
-bool event_register_backend(const char *name, const struct tevent_ops *ops);
+bool tevent_register_backend(const char *name, const struct tevent_ops *ops);
bool ev_timeval_is_zero(const struct timeval *tv);
struct tevent_timer *common_event_add_timed(struct tevent_context *,
@@ -151,11 +151,11 @@ struct tevent_signal *common_event_add_signal(struct tevent_context *ev,
int common_event_check_signal(struct tevent_context *ev);
-bool events_standard_init(void);
-bool events_select_init(void);
+bool tevent_standard_init(void);
+bool tevent_select_init(void);
#if HAVE_EVENTS_EPOLL
-bool events_epoll_init(void);
+bool tevent_epoll_init(void);
#endif
#if HAVE_LINUX_AIO
-bool events_aio_init(void);
+bool tevent_aio_init(void);
#endif