From 609f2fabab3ca9cedd69c499dc94bb2019d4f665 Mon Sep 17 00:00:00 2001 From: Sebastian Herbszt Date: Sun, 19 Jul 2009 15:16:09 +0200 Subject: [PATCH] qemu-thread: use pthread_equal Fixes qemu-thread.c: In function `qemu_thread_equal': qemu-thread.c:161: error: invalid operands to binary == Use of pthread_equal suggested by Filip Navara. Signed-off-by: Sebastian Herbszt Signed-off-by: Anthony Liguori --- qemu-thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-thread.c b/qemu-thread.c index 719cfcddd4..3923db74ee 100644 --- a/qemu-thread.c +++ b/qemu-thread.c @@ -158,6 +158,6 @@ void qemu_thread_self(QemuThread *thread) int qemu_thread_equal(QemuThread *thread1, QemuThread *thread2) { - return (thread1->thread == thread2->thread); + return pthread_equal(thread1->thread, thread2->thread); }