summaryrefslogtreecommitdiff
path: root/source3/modules/vfs_aio_pthread.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 09:59:08 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:53 +0100
commit00b1ef8853a0ad3bf967f98d5a9a570109abb82e (patch)
tree567503dff517353f153b86559a3fc65828b0b684 /source3/modules/vfs_aio_pthread.c
parent5743277ed6297ce77afcdb7b336c8929c83af8a3 (diff)
downloadsamba-00b1ef8853a0ad3bf967f98d5a9a570109abb82e.tar.gz
samba-00b1ef8853a0ad3bf967f98d5a9a570109abb82e.tar.bz2
samba-00b1ef8853a0ad3bf967f98d5a9a570109abb82e.zip
s3:modules: s/struct event_context/struct tevent_context
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/modules/vfs_aio_pthread.c')
-rw-r--r--source3/modules/vfs_aio_pthread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/modules/vfs_aio_pthread.c b/source3/modules/vfs_aio_pthread.c
index 6edb12d95e..aa10921a3d 100644
--- a/source3/modules/vfs_aio_pthread.c
+++ b/source3/modules/vfs_aio_pthread.c
@@ -37,9 +37,9 @@
Ensure thread pool is initialized.
***********************************************************************/
-static bool init_aio_threadpool(struct event_context *ev_ctx,
+static bool init_aio_threadpool(struct tevent_context *ev_ctx,
struct pthreadpool **pp_pool,
- void (*completion_fn)(struct event_context *,
+ void (*completion_fn)(struct tevent_context *,
struct fd_event *,
uint16,
void *))
@@ -150,7 +150,7 @@ static struct aio_open_private_data *find_open_private_data_by_mid(uint64_t mid)
Callback when an open completes.
***********************************************************************/
-static void aio_open_handle_completion(struct event_context *event_ctx,
+static void aio_open_handle_completion(struct tevent_context *event_ctx,
struct fd_event *event,
uint16 flags,
void *p)