mirror of https://gitee.com/openkylin/qemu.git
22 lines
326 B
C
22 lines
326 B
C
#include "qemu/osdep.h"
|
|
#include "monitor/monitor.h"
|
|
|
|
int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int64_t monitor_fdset_dup_fd_find(int dup_fd)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
int monitor_fdset_get_fd(int64_t fdset_id, int flags)
|
|
{
|
|
return -ENOENT;
|
|
}
|
|
|
|
void monitor_fdset_dup_fd_remove(int dupfd)
|
|
{
|
|
}
|