mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
858d436665
It makes little sense to implement only one of them, so avoid proliferation of stubs files. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
22 lines
342 B
C
22 lines
342 B
C
#include "qemu/osdep.h"
|
|
#include "qemu-common.h"
|
|
#include "monitor/monitor.h"
|
|
|
|
int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int monitor_fdset_dup_fd_find(int dup_fd)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int monitor_fdset_get_fd(int64_t fdset_id, int flags)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
void monitor_fdset_dup_fd_remove(int dupfd)
|
|
{
|
|
}
|