mirror of
https://git.proxmox.com/git/qemu
synced 2025-06-14 21:59:32 +00:00
Fix mingw32 build
Don't define qemu_chr_open_eventfd() on Windows. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
cdfb017eb0
commit
68c18d1ccf
@ -2087,11 +2087,12 @@ static void tcp_chr_read(void *opaque)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CharDriverState *qemu_chr_open_eventfd(int eventfd){
|
#ifndef _WIN32
|
||||||
|
CharDriverState *qemu_chr_open_eventfd(int eventfd)
|
||||||
|
{
|
||||||
return qemu_chr_open_fd(eventfd, eventfd);
|
return qemu_chr_open_fd(eventfd, eventfd);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void tcp_chr_connect(void *opaque)
|
static void tcp_chr_connect(void *opaque)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user