]> git.proxmox.com Git - mirror_qemu.git/blame - include/block/thread-pool.h
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-hmp-20170331' into staging
[mirror_qemu.git] / include / block / thread-pool.h
CommitLineData
d354c7ec
PB
1/*
2 * QEMU block layer thread pool
3 *
4 * Copyright IBM, Corp. 2008
5 * Copyright Red Hat, Inc. 2012
6 *
7 * Authors:
8 * Anthony Liguori <aliguori@us.ibm.com>
9 * Paolo Bonzini <pbonzini@redhat.com>
10 *
11 * This work is licensed under the terms of the GNU GPL, version 2. See
12 * the COPYING file in the top-level directory.
13 *
14 * Contributions after 2012-01-13 are licensed under the terms of the
15 * GNU GPL, version 2 or (at your option) any later version.
16 */
17
18#ifndef QEMU_THREAD_POOL_H
175de524 19#define QEMU_THREAD_POOL_H
d354c7ec 20
a31e69cf 21#include "block/block.h"
d354c7ec
PB
22
23typedef int ThreadPoolFunc(void *opaque);
24
f7311ccc
SH
25typedef struct ThreadPool ThreadPool;
26
27ThreadPool *thread_pool_new(struct AioContext *ctx);
28void thread_pool_free(ThreadPool *pool);
29
7c84b1b8 30BlockAIOCB *thread_pool_submit_aio(ThreadPool *pool,
c4d9d196 31 ThreadPoolFunc *func, void *arg,
097310b5 32 BlockCompletionFunc *cb, void *opaque);
c4d9d196
SH
33int coroutine_fn thread_pool_submit_co(ThreadPool *pool,
34 ThreadPoolFunc *func, void *arg);
35void thread_pool_submit(ThreadPool *pool, ThreadPoolFunc *func, void *arg);
d354c7ec
PB
36
37#endif