]> git.proxmox.com Git - mirror_qemu.git/commit
qemu-thread: implement joinable threads for POSIX
authorJan Kiszka <jan.kiszka@siemens.com>
Mon, 12 Dec 2011 16:21:32 +0000 (17:21 +0100)
committerAnthony Liguori <aliguori@us.ibm.com>
Mon, 12 Dec 2011 23:06:22 +0000 (17:06 -0600)
commit8763046b4b27f59ce0b639dbca896a01bf7b1388
tree63882f1f7f066daa2cfa0adba488f9ad5ebc82af
parentcf218714791a78c91db34a4aa9e33348923ad659
qemu-thread: implement joinable threads for POSIX

Allow to control if a QEMU thread is created joinable or not. Make it
not joinable by default to avoid that we keep the associated resources
around when terminating a thread without joining it (what we couldn't do
so far for obvious reasons).

The audio subsystem will need the join feature when converting it to
QEMU threading/locking abstractions, so provide that service.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
qemu-thread-posix.c