blob: 4807b5dc225f4b167124b4ffb6fae653621c46c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "qemu-common.h"
#include "main-loop.h"
int qemu_set_fd_handler2(int fd,
IOCanReadHandler *fd_read_poll,
IOHandler *fd_read,
IOHandler *fd_write,
void *opaque)
{
abort();
}
|