diff options
Diffstat (limited to 'qemu-thread-posix.c')
-rw-r--r-- | qemu-thread-posix.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/qemu-thread-posix.c b/qemu-thread-posix.c index ac3c0c9d14..49d3388a86 100644 --- a/qemu-thread-posix.c +++ b/qemu-thread-posix.c @@ -117,13 +117,14 @@ void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex) void qemu_thread_create(QemuThread *thread, void *(*start_routine)(void*), - void *arg) + void *arg, int mode) { + sigset_t set, oldset; int err; - /* Leave signal handling to the iothread. */ - sigset_t set, oldset; + assert(mode == QEMU_THREAD_DETACHED); + /* Leave signal handling to the iothread. */ sigfillset(&set); pthread_sigmask(SIG_SETMASK, &set, &oldset); err = pthread_create(&thread->thread, NULL, start_routine, arg); |