]> git.proxmox.com Git - qemu.git/blobdiff - qemu-thread.h
target-s390x: avoid AREG0 for FPU helpers
[qemu.git] / qemu-thread.h
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