diff options
Diffstat (limited to 'qemu-thread-posix.c')
-rw-r--r-- | qemu-thread-posix.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/qemu-thread-posix.c b/qemu-thread-posix.c index 8b54cc0262..87c1a9fd93 100644 --- a/qemu-thread-posix.c +++ b/qemu-thread-posix.c @@ -171,15 +171,6 @@ void qemu_thread_create(QemuThread *thread, pthread_sigmask(SIG_SETMASK, &oldset, NULL); } -void qemu_thread_signal(QemuThread *thread, int sig) -{ - int err; - - err = pthread_kill(thread->thread, sig); - if (err) - error_exit(err, __func__); -} - void qemu_thread_get_self(QemuThread *thread) { thread->thread = pthread_self(); |