diff options
author | Sebastian Herbszt <herbszt@gmx.de> | 2009-07-19 15:16:09 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-22 10:58:49 -0500 |
commit | 609f2fabab3ca9cedd69c499dc94bb2019d4f665 (patch) | |
tree | 33d07a16aa57f2f8090f89715100e93b73348293 /qemu-thread.c | |
parent | 7ea78b7489fed936a1ea2483d0cca152e022cbd0 (diff) |
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 <herbszt@gmx.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qemu-thread.c')
-rw-r--r-- | qemu-thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |