]> git.proxmox.com Git - mirror_qemu.git/blob - stubs/get-fd.c
hbitmap: Fix shifts of constants by granularity
[mirror_qemu.git] / stubs / get-fd.c
1 #include "qemu/osdep.h"
2 #include "qapi/error.h"
3 #include "qemu-common.h"
4 #include "monitor/monitor.h"
5
6 int monitor_get_fd(Monitor *mon, const char *name, Error **errp)
7 {
8 error_setg(errp, "only QEMU supports file descriptor passing");
9 return -1;
10 }