Message ID | 1453820420-68329-1-git-send-email-pbonzini@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 26 January 2016 at 15:00, Paolo Bonzini <pbonzini@redhat.com> wrote: > The following changes since commit 3db34bf64ab4f8797565dd8750003156c32b301d: > > Merge remote-tracking branch 'remotes/afaerber/tags/qom-devices-for-peter' into staging (2016-01-18 17:40:50 +0000) > > are available in the git repository at: > > > git://github.com/bonzini/qemu.git tags/for-upstream > > for you to fetch changes up to 28fbf8f67b078f738e790f3c3a56aeab2c0ea5d6: > > scripts/dump-guest-memory.py: Fix module docstring (2016-01-26 15:58:14 +0100) > > ---------------------------------------------------------------- > * chardev support for TLS and leak fix > * NBD fix from Denis > * condvar fix from Dave > * kvm_stat and dump-guest-memory almost rewrite > * mem-prealloc fix from Luiz > * manpage style improvement > Applied, thanks. -- PMM
diff --git a/qemu-char.c b/qemu-char.c index ca53e8c..c88272b 100644 --- a/qemu-char.c +++ b/qemu-char.c @@ -887,6 +887,7 @@ static void remove_fd_in_watch(CharDriverState *chr) } +#ifndef _WIN32 static int io_channel_send_full(QIOChannel *ioc, const void *buf, size_t len, int *fds, size_t nfds) @@ -920,7 +921,6 @@ static int io_channel_send_full(QIOChannel *ioc, } -#ifndef _WIN32 static int io_channel_send(QIOChannel *ioc, const void *buf, size_t len) { return io_channel_send_full(ioc, buf, len, NULL, 0);