summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-01-02 11:32:29 +0100
committerStefan Metzmacher <metze@samba.org>2009-01-02 18:16:50 +0100
commitd33b6aeff3ff0220c16211936043934cfa3ec71b (patch)
treea21a1a8d8bcaac5e6038881600a8a440e8441e6a /lib
parent8bdc947993dd29d0480675464d548134c6f71ea7 (diff)
downloadsamba-d33b6aeff3ff0220c16211936043934cfa3ec71b.tar.gz
tevent: rename event_loop_* => tevent_loop_*
metze
Diffstat (limited to 'lib')
-rw-r--r--lib/tevent/tevent.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/tevent/tevent.c b/lib/tevent/tevent.c
index 94d71d490d2..563a6522a55 100644
--- a/lib/tevent/tevent.c
+++ b/lib/tevent/tevent.c
@@ -47,8 +47,8 @@
After that you can add/remove events that you are interested in
using event_add_*() and talloc_free()
- Finally, you call event_loop_wait_once() to block waiting for one of the
- events to occor or event_loop_wait() which will loop
+ Finally, you call tevent_loop_wait_once() to block waiting for one of the
+ events to occor or tevent_loop_wait() which will loop
forever.
*/
@@ -279,7 +279,7 @@ struct signal_event *event_add_signal(struct tevent_context *ev, TALLOC_CTX *mem
/*
do a single event loop using the events defined in ev
*/
-int event_loop_once(struct tevent_context *ev)
+int tevent_loop_once(struct tevent_context *ev)
{
return ev->ops->loop_once(ev);
}
@@ -287,7 +287,7 @@ int event_loop_once(struct tevent_context *ev)
/*
return on failure or (with 0) if all fd events are removed
*/
-int event_loop_wait(struct tevent_context *ev)
+int tevent_loop_wait(struct tevent_context *ev)
{
return ev->ops->loop_wait(ev);
}