Re: [Qemu-devel] [RFC][PATCH v2 12/17] guest agent: worker thread class

2011-04-21 Thread Jes Sorensen
On 04/18/11 17:02, Michael Roth wrote: diff --git a/qga/guest-agent-worker.c b/qga/guest-agent-worker.c new file mode 100644 index 000..e3295da --- /dev/null +++ b/qga/guest-agent-worker.c @@ -0,0 +1,173 @@ +/* + * QEMU Guest Agent worker thread interfaces + * + * Copyright IBM Corp.

Re: [Qemu-devel] [RFC][PATCH v2 12/17] guest agent: worker thread class

2011-04-21 Thread Michael Roth
On 04/21/2011 03:44 AM, Jes Sorensen wrote: On 04/18/11 17:02, Michael Roth wrote: diff --git a/qga/guest-agent-worker.c b/qga/guest-agent-worker.c new file mode 100644 index 000..e3295da --- /dev/null +++ b/qga/guest-agent-worker.c @@ -0,0 +1,173 @@ +/* + * QEMU Guest Agent worker thread

Re: [Qemu-devel] [RFC][PATCH v2 12/17] guest agent: worker thread class

2011-04-21 Thread Jes Sorensen
On 04/21/11 15:15, Michael Roth wrote: On 04/21/2011 03:44 AM, Jes Sorensen wrote: and again I'll stop. Basically there really should be no references to pthread_* This is on the guest side of things where I'm trying to use GLib wherever possible to keep things somewhat portable:

[Qemu-devel] [RFC][PATCH v2 12/17] guest agent: worker thread class

2011-04-18 Thread Michael Roth
Signed-off-by: Michael Roth mdr...@linux.vnet.ibm.com --- qga/guest-agent-worker.c | 173 ++ 1 files changed, 173 insertions(+), 0 deletions(-) create mode 100644 qga/guest-agent-worker.c diff --git a/qga/guest-agent-worker.c