qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 0/4] qemu-file: Move QEMUFileOps implementations to


From: Eduardo Habkost
Subject: [Qemu-devel] [PATCH 0/4] qemu-file: Move QEMUFileOps implementations to separate files
Date: Wed, 1 Oct 2014 17:34:33 -0300

With this, code that uses symbols from qemu-file.c don't need to bring extra
dependencies because of the actual QEMUFile operation implementations.

Eduardo Habkost (4):
  qemu-file: Make qemu_file_is_writable() non-static
  qemu-file: Use qemu_file_is_writable() on stdio_fclose()
  qemu-file: Move unix and socket implementations to qemu-file-unix.c
  qemu-file: Move stdio implementation to qemu-file-stdio.c

 Makefile.objs                 |   2 +-
 include/migration/qemu-file.h |   1 +
 qemu-file-stdio.c             | 194 ++++++++++++++++++++++
 qemu-file-unix.c              | 223 ++++++++++++++++++++++++++
 qemu-file.c                   | 365 +-----------------------------------------
 tests/Makefile                |   2 +-
 6 files changed, 421 insertions(+), 366 deletions(-)
 create mode 100644 qemu-file-stdio.c
 create mode 100644 qemu-file-unix.c

-- 
1.9.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]