diff options
Diffstat (limited to 'qemu-thread.c')
-rw-r--r-- | qemu-thread.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qemu-thread.c b/qemu-thread.c index fbc78fef4b..e3077733fc 100644 --- a/qemu-thread.c +++ b/qemu-thread.c @@ -176,14 +176,14 @@ void qemu_thread_signal(QemuThread *thread, int sig) error_exit(err, __func__); } -void qemu_thread_self(QemuThread *thread) +void qemu_thread_get_self(QemuThread *thread) { thread->thread = pthread_self(); } -int qemu_thread_equal(QemuThread *thread1, QemuThread *thread2) +int qemu_thread_is_self(QemuThread *thread) { - return pthread_equal(thread1->thread, thread2->thread); + return pthread_equal(pthread_self(), thread->thread); } void qemu_thread_exit(void *retval) |