xref: /qemu/include/qemu/async-teardown.h (revision ffda5db6)
1 /*
2  * Asynchronous teardown
3  *
4  * Copyright IBM, Corp. 2022
5  *
6  * Authors:
7  *  Claudio Imbrenda <imbrenda@linux.ibm.com>
8  *
9  * This work is licensed under the terms of the GNU GPL, version 2 or (at your
10  * option) any later version.  See the COPYING file in the top-level directory.
11  *
12  */
13 #ifndef QEMU_ASYNC_TEARDOWN_H
14 #define QEMU_ASYNC_TEARDOWN_H
15 
16 #ifdef CONFIG_LINUX
17 void init_async_teardown(void);
18 #endif
19 
20 #endif
21