qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] Re: [PATCH 2/3] qemu-thread: add cleanup_push() and cleanup


From: Paolo Bonzini
Subject: [Qemu-devel] Re: [PATCH 2/3] qemu-thread: add cleanup_push() and cleanup_pop()
Date: Thu, 03 Jun 2010 09:27:00 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.9) Gecko/20100430 Fedora/3.0.4-3.fc13 Lightning/1.0b2pre Thunderbird/3.0.4

On 05/29/2010 09:38 AM, Corentin Chary wrote:
Signed-off-by: Corentin Chary<address@hidden>
---
  qemu-thread.h |    4 ++++
  1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/qemu-thread.h b/qemu-thread.h
index 19bb30c..e5006bb 100644
--- a/qemu-thread.h
+++ b/qemu-thread.h
@@ -41,4 +41,8 @@ void qemu_thread_self(QemuThread *thread);
  int qemu_thread_equal(QemuThread *thread1, QemuThread *thread2);
  void qemu_thread_exit(void *retval);

+#define qemu_thread_cleanup_pop(execute) pthread_cleanup_pop(execute)
+#define qemu_thread_cleanup_push(routine, arg)  \
+    pthread_cleanup_push(routine, arg)

I agree with Paul that this isn't necessary. Also you're not using pthread_exit. Probably stale from a previous version of the patch?

Paolo



reply via email to

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