]> Git Repo - qemu.git/blob - stubs/set-fd-handler.c
bt-hci-csr: drop unused argument
[qemu.git] / stubs / set-fd-handler.c
1 #include "qemu/osdep.h"
2 #include "qemu-common.h"
3 #include "qemu/main-loop.h"
4
5 void qemu_set_fd_handler(int fd,
6                          IOHandler *fd_read,
7                          IOHandler *fd_write,
8                          void *opaque)
9 {
10     abort();
11 }
12
13 void aio_set_fd_handler(AioContext *ctx,
14                         int fd,
15                         bool is_external,
16                         IOHandler *io_read,
17                         IOHandler *io_write,
18                         void *opaque)
19 {
20     abort();
21 }
This page took 0.024901 seconds and 4 git commands to generate.