]> git.proxmox.com Git - qemu.git/blob - buffered_file.h
buffered_file: unfold migrate_fd_put_ready
[qemu.git] / buffered_file.h
1 /*
2 * QEMU buffered QEMUFile
3 *
4 * Copyright IBM, Corp. 2008
5 *
6 * Authors:
7 * Anthony Liguori <aliguori@us.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 */
13
14 #ifndef QEMU_BUFFERED_FILE_H
15 #define QEMU_BUFFERED_FILE_H
16
17 #include "hw/hw.h"
18 #include "migration.h"
19
20 typedef void (BufferedWaitForUnfreezeFunc)(void *opaque);
21 typedef int (BufferedCloseFunc)(void *opaque);
22
23 QEMUFile *qemu_fopen_ops_buffered(MigrationState *migration_state,
24 size_t xfer_limit,
25 BufferedWaitForUnfreezeFunc *wait_for_unfreeze,
26 BufferedCloseFunc *close);
27
28 #endif