From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:18:29 +0000 (+0100) Subject: s3:modules: s/struct timed_event/struct tevent_timer X-Git-Tag: tevent-0.9.18~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=80421ee9752ed06e12721ef2a28b08e1c311e31e;p=thirdparty%2Fsamba.git s3:modules: s/struct timed_event/struct tevent_timer Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c index 4f6574bb475..54fb4d20151 100644 --- a/source3/modules/vfs_aio_fork.c +++ b/source3/modules/vfs_aio_fork.c @@ -138,7 +138,7 @@ struct aio_child { struct aio_child_list { struct aio_child *children; - struct timed_event *cleanup_event; + struct tevent_timer *cleanup_event; }; static void free_aio_children(void **p) @@ -257,7 +257,7 @@ static ssize_t write_fd(int fd, void *ptr, size_t nbytes, int sendfd) } static void aio_child_cleanup(struct tevent_context *event_ctx, - struct timed_event *te, + struct tevent_timer *te, struct timeval now, void *private_data) {