From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:34492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0gsV-0003Zr-HS for qemu-devel@nongnu.org; Thu, 23 Feb 2012 17:11:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S0gsU-0003Kg-Hl for qemu-devel@nongnu.org; Thu, 23 Feb 2012 17:11:07 -0500 Received: from mail-pz0-f45.google.com ([209.85.210.45]:55216) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0gsU-0003KY-B1 for qemu-devel@nongnu.org; Thu, 23 Feb 2012 17:11:06 -0500 Received: by dadp14 with SMTP id p14so2076324dad.4 for ; Thu, 23 Feb 2012 14:11:05 -0800 (PST) Sender: fluxion From: Michael Roth Date: Thu, 23 Feb 2012 16:10:47 -0600 Message-Id: <1330035055-29838-1-git-send-email-mdroth@linux.vnet.ibm.com> Subject: [Qemu-devel] [PULL 0/8] qemu-ga: add support for Windows List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com The following changes since commit 235fe3bfd46b1104575b540d0bc3fdf584030b99: qom: add test tools (2012-02-22 12:18:26 -0600) are available in the git repository at: git://github.com/mdroth/qemu.git qga-win32-pull-2-23-12 Michael Roth (8): qemu-ga: Add schema documentation for types qemu-ga: move channel/transport functionality into wrapper class qemu-ga: separate out common commands from posix-specific ones qemu-ga: rename guest-agent-commands.c -> commands-posix.c qemu-ga: fixes for win32 build of qemu-ga qemu-ga: add initial win32 support qemu-ga: add Windows service integration qemu-ga: add win32 guest-shutdown command Makefile | 2 +- Makefile.objs | 8 +- configure | 2 +- qapi-schema-guest.json | 118 +++++- qemu-ga.c | 423 ++++++++++------------ qga/channel-posix.c | 246 +++++++++++++ qga/channel-win32.c | 340 +++++++++++++++++ qga/channel.h | 33 ++ qga/{guest-agent-commands.c => commands-posix.c} | 59 +--- qga/commands-win32.c | 130 +++++++ qga/commands.c | 73 ++++ qga/guest-agent-core.h | 3 +- qga/service-win32.c | 114 ++++++ qga/service-win32.h | 30 ++ 14 files changed, 1263 insertions(+), 318 deletions(-) create mode 100644 qga/channel-posix.c create mode 100644 qga/channel-win32.c create mode 100644 qga/channel.h rename qga/{guest-agent-commands.c => commands-posix.c} (89%) create mode 100644 qga/commands-win32.c create mode 100644 qga/commands.c create mode 100644 qga/service-win32.c create mode 100644 qga/service-win32.h