From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:34456) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RaFPK-0000ae-4a for qemu-devel@nongnu.org; Mon, 12 Dec 2011 18:35:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RaFPJ-0007ml-5d for qemu-devel@nongnu.org; Mon, 12 Dec 2011 18:35:42 -0500 Received: from mail-qy0-f173.google.com ([209.85.216.173]:64910) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RaFPI-0007mh-Tg for qemu-devel@nongnu.org; Mon, 12 Dec 2011 18:35:41 -0500 Received: by qcsd15 with SMTP id d15so4833276qcs.4 for ; Mon, 12 Dec 2011 15:35:40 -0800 (PST) Message-ID: <4EE68FC8.50500@redhat.com> Date: Mon, 12 Dec 2011 17:35:36 -0600 From: Anthony Liguori MIME-Version: 1.0 References: <1323706894-29959-1-git-send-email-pbonzini@redhat.com> In-Reply-To: <1323706894-29959-1-git-send-email-pbonzini@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/4] add qemu_thread_join, use it to fix bug in ccid List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: jan.kiszka@siemens.com, alevy@redhat.com, qemu-devel@nongnu.org On 12/12/2011 10:21 AM, Paolo Bonzini wrote: > Patches introducing qemu_thread_join have floated around multiple times. > Now I found a bug that requires it to be fixed, so perhaps this time > it will be more successful. > > For the actual bug, see patch 4. > > v1->v2: remove spurious submodule change, fix blank lines Applied all. Thanks. Regards, Anthony Liguori > > Jan Kiszka (2): > qemu-thread: add API for joinable threads > qemu-thread: implement joinable threads for POSIX > > Paolo Bonzini (2): > qemu-thread: implement joinable threads for Win32 > ccid: make threads joinable > > cpus.c | 6 ++- > hw/ccid-card-emulated.c | 25 +++++------ > qemu-thread-posix.c | 35 ++++++++++++++-- > qemu-thread-win32.c | 107 ++++++++++++++++++++++++++++++---------------- > qemu-thread-win32.h | 5 +- > qemu-thread.h | 8 +++- > ui/vnc-jobs-async.c | 2 +- > 8 files changed, 127 insertions(+), 63 deletions(-) >