aboutsummaryrefslogtreecommitdiff
path: root/stubs/set-fd-handler.c
blob: acbe65c1da7f94e0802467467acf11d0b6d975f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "qemu/osdep.h"
#include "qemu-common.h"
#include "qemu/main-loop.h"

void qemu_set_fd_handler(int fd,
                         IOHandler *fd_read,
                         IOHandler *fd_write,
                         void *opaque)
{
    abort();
}

void aio_set_fd_handler(AioContext *ctx,
                        int fd,
                        bool is_external,
                        IOHandler *io_read,
                        IOHandler *io_write,
                        AioPollFn *io_poll,
                        void *opaque)
{
    abort();
}