summaryrefslogtreecommitdiffstats
path: root/hw/qxl.c
diff options
context:
space:
mode:
authorJan Kiszka2011-09-20 17:14:40 +0200
committerGerd Hoffmann2011-10-25 14:00:53 +0200
commit691f5c7bde07218127e034cca4e2581f66a6ddcf (patch)
tree46a44ec8e5a897d3c0e8f77b38193f3b2e03e5ec /hw/qxl.c
parentspice: Convert core to QEMU thread API (diff)
downloadqemu-691f5c7bde07218127e034cca4e2581f66a6ddcf.tar.gz
qemu-691f5c7bde07218127e034cca4e2581f66a6ddcf.tar.xz
qemu-691f5c7bde07218127e034cca4e2581f66a6ddcf.zip
qxl: Convert to QEMU thread API
Use QEMU thread API instead of pthread directly. We still need to get rid of pthread_yield, though, to drop pthread.h inclusion. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/qxl.c')
-rw-r--r--hw/qxl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/qxl.c b/hw/qxl.c
index 03848edb75..a0b0f36eb5 100644
--- a/hw/qxl.c
+++ b/hw/qxl.c
@@ -1372,7 +1372,7 @@ static void qxl_send_events(PCIQXLDevice *d, uint32_t events)
if ((old_pending & le_events) == le_events) {
return;
}
- if (pthread_self() == d->main) {
+ if (qemu_thread_is_self(&d->main)) {
qxl_update_irq(d);
} else {
if (write(d->pipe[1], d, 1) != 1) {
@@ -1391,7 +1391,7 @@ static void init_pipe_signaling(PCIQXLDevice *d)
fcntl(d->pipe[1], F_SETFL, O_NONBLOCK);
fcntl(d->pipe[0], F_SETOWN, getpid());
- d->main = pthread_self();
+ qemu_thread_get_self(&d->main);
qemu_set_fd_handler(d->pipe[0], pipe_read, NULL, d);
}