diff options
author | Andreas Färber <afaerber@suse.de> | 2012-05-02 17:21:31 +0200 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-08-02 18:11:11 +0200 |
commit | 2d797b6520d38bc66827b2022e9c620058f18de3 (patch) | |
tree | cbd53e9258d1580a1edecf3f6aa51c0d14f7e3b3 | |
parent | 02d2bd5d57812154cfb978bc2098cf49d551583d (diff) |
qemu-thread: Let qemu_thread_is_self() return bool
qemu_cpu_is_self(), passing the return value through, will later be
adapted to return bool as well.
Signed-off-by: Andreas Färber <afaerber@suse.de>
Reviewed-by: Stefan Weil <sw@weilnetz.de>
-rw-r--r-- | qemu-thread-posix.c | 2 | ||||
-rw-r--r-- | qemu-thread-win32.c | 2 | ||||
-rw-r--r-- | qemu-thread.h | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/qemu-thread-posix.c b/qemu-thread-posix.c index 9e1b5fbdaa..8fbabdac36 100644 --- a/qemu-thread-posix.c +++ b/qemu-thread-posix.c @@ -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); } diff --git a/qemu-thread-win32.c b/qemu-thread-win32.c index 3524c8b785..177b398cc4 100644 --- a/qemu-thread-win32.c +++ b/qemu-thread-win32.c @@ -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; } diff --git a/qemu-thread.h b/qemu-thread.h index a78a8f2524..05fdaaf50e 100644 --- a/qemu-thread.h +++ b/qemu-thread.h @@ -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 |