summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aio_fork.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 10:18:29 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:57 +0100
commit80421ee9752ed06e12721ef2a28b08e1c311e31e (patch)
tree3ea5a6a0866818de7a837920e4cb7efee9ec5add /source3/modules/vfs_aio_fork.c
parent7f41a62e75ab9a07e93c4de2597a7ff9c47f506d (diff)
downloadsamba-80421ee9752ed06e12721ef2a28b08e1c311e31e.tar.gz
samba-80421ee9752ed06e12721ef2a28b08e1c311e31e.tar.bz2
samba-80421ee9752ed06e12721ef2a28b08e1c311e31e.zip
s3:modules: s/struct timed_event/struct tevent_timer
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/modules/vfs_aio_fork.c')
-rw-r--r--source3/modules/vfs_aio_fork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/modules/vfs_aio_fork.c b/source3/modules/vfs_aio_fork.c
index 4f6574bb47..54fb4d2015 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)
{