]> Git Repo - qemu.git/commitdiff
qemu-thread: Let qemu_thread_is_self() return bool
authorAndreas Färber <[email protected]>
Wed, 2 May 2012 15:21:31 +0000 (17:21 +0200)
committerAndreas Färber <[email protected]>
Thu, 2 Aug 2012 16:11:11 +0000 (18:11 +0200)
qemu_cpu_is_self(), passing the return value through, will later be
adapted to return bool as well.

Signed-off-by: Andreas Färber <[email protected]>
Reviewed-by: Stefan Weil <[email protected]>
qemu-thread-posix.c
qemu-thread-win32.c
qemu-thread.h

index 9e1b5fbdaa0171e233ef156ac536617510f92274..8fbabdac36442e629c7e0f1a17350f9b71d2e222 100644 (file)
@@ -151,7 +151,7 @@ void qemu_thread_get_self(QemuThread *thread)
     thread->thread = pthread_self();
 }
 
-int qemu_thread_is_self(QemuThread *thread)
+bool qemu_thread_is_self(QemuThread *thread)
 {
    return pthread_equal(pthread_self(), thread->thread);
 }
index 3524c8b785a4cb4a29798464143eb7fe629cb704..177b398cc4fe87de9abbe5293da3a5f98c17455e 100644 (file)
@@ -330,7 +330,7 @@ HANDLE qemu_thread_get_handle(QemuThread *thread)
     return handle;
 }
 
-int qemu_thread_is_self(QemuThread *thread)
+bool qemu_thread_is_self(QemuThread *thread)
 {
     return GetCurrentThreadId() == thread->tid;
 }
index a78a8f2524bf9affd5a476433b0bc2f69e6ccb53..05fdaaf50e4209ad62ea216a6c1e39ab86f0fdb6 100644 (file)
@@ -2,6 +2,7 @@
 #define __QEMU_THREAD_H 1
 
 #include <inttypes.h>
+#include <stdbool.h>
 
 typedef struct QemuMutex QemuMutex;
 typedef struct QemuCond QemuCond;
@@ -42,7 +43,7 @@ void qemu_thread_create(QemuThread *thread,
                         void *arg, int mode);
 void *qemu_thread_join(QemuThread *thread);
 void qemu_thread_get_self(QemuThread *thread);
-int qemu_thread_is_self(QemuThread *thread);
+bool qemu_thread_is_self(QemuThread *thread);
 void qemu_thread_exit(void *retval);
 
 #endif
This page took 0.032634 seconds and 4 git commands to generate.