mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 17:23:56 -06:00
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>
This commit is contained in:
parent
f9ab6091b0
commit
691f5c7bde
2 changed files with 4 additions and 3 deletions
3
hw/qxl.h
3
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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue