2016-01-30 01:49:52 +08:00
|
|
|
#include "qemu/osdep.h"
|
2012-11-17 01:35:27 +08:00
|
|
|
#include "qemu-common.h"
|
2012-12-18 01:20:00 +08:00
|
|
|
#include "qemu/main-loop.h"
|
2012-11-17 01:35:27 +08:00
|
|
|
|
2015-06-04 14:45:24 +08:00
|
|
|
void qemu_set_fd_handler(int fd,
|
|
|
|
IOHandler *fd_read,
|
|
|
|
IOHandler *fd_write,
|
|
|
|
void *opaque)
|
2015-06-04 14:45:12 +08:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
2016-04-22 21:53:53 +08:00
|
|
|
|
|
|
|
void aio_set_fd_handler(AioContext *ctx,
|
|
|
|
int fd,
|
|
|
|
bool is_external,
|
|
|
|
IOHandler *io_read,
|
|
|
|
IOHandler *io_write,
|
|
|
|
void *opaque)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|