Add stub function "qemu_set_fd_handler" which is used by util/event_notifier-posix.c.
Signed-off-by: Fam Zheng <[email protected]> --- stubs/Makefile.objs | 1 + stubs/iohandler.c | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 stubs/iohandler.c diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs index 5e347d0..d9cad1b 100644 --- a/stubs/Makefile.objs +++ b/stubs/Makefile.objs @@ -40,3 +40,4 @@ stub-obj-$(CONFIG_WIN32) += fd-register.o stub-obj-y += cpus.o stub-obj-y += kvm.o stub-obj-y += qmp_pc_dimm_device_list.o +stub-obj-y += iohandler.o diff --git a/stubs/iohandler.c b/stubs/iohandler.c new file mode 100644 index 0000000..97c0ce5 --- /dev/null +++ b/stubs/iohandler.c @@ -0,0 +1,20 @@ +/* + * iohandler stub functions + * + * Copyright Red Hat, Inc., 2014 + * + * Author: Fam Zheng <[email protected]> + * + * This work is licensed under the terms of the GNU GPL, version 2 or + * later. See the COPYING file in the top-level directory. + */ + +#include "qemu/main-loop.h" + +int qemu_set_fd_handler(int fd, + IOHandler *fd_read, + IOHandler *fd_write, + void *opaque) +{ + abort(); +} -- 2.0.3
