From 691f5c7bde07218127e034cca4e2581f66a6ddcf Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Tue, 20 Sep 2011 17:14:40 +0200 Subject: 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 Signed-off-by: Gerd Hoffmann --- hw/qxl.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'hw/qxl.h') diff --git a/hw/qxl.h b/hw/qxl.h index 868db81..37b2619 100644 --- a/hw/qxl.h +++ b/hw/qxl.h @@ -4,6 +4,7 @@ #include "hw.h" #include "pci.h" #include "vga_int.h" +#include "qemu-thread.h" #include "ui/qemu-spice.h" #include "ui/spice-display.h" @@ -63,7 +64,7 @@ typedef struct PCIQXLDevice { QemuMutex track_lock; /* thread signaling */ - pthread_t main; + QemuThread main; int pipe[2]; /* ram pci bar */ -- cgit v1.1