mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00

We only used it once, just remove the callback indirection Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
30 lines
849 B
C
30 lines
849 B
C
/*
|
|
* QEMU buffered QEMUFile
|
|
*
|
|
* Copyright IBM, Corp. 2008
|
|
*
|
|
* Authors:
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
* the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef QEMU_BUFFERED_FILE_H
|
|
#define QEMU_BUFFERED_FILE_H
|
|
|
|
#include "hw/hw.h"
|
|
#include "migration.h"
|
|
|
|
typedef void (BufferedPutReadyFunc)(void *opaque);
|
|
typedef void (BufferedWaitForUnfreezeFunc)(void *opaque);
|
|
typedef int (BufferedCloseFunc)(void *opaque);
|
|
|
|
QEMUFile *qemu_fopen_ops_buffered(MigrationState *migration_state,
|
|
size_t xfer_limit,
|
|
BufferedPutReadyFunc *put_ready,
|
|
BufferedWaitForUnfreezeFunc *wait_for_unfreeze,
|
|
BufferedCloseFunc *close);
|
|
|
|
#endif
|