2016-10-24 11:52:35 +03:00
|
|
|
#include "qemu/osdep.h"
|
2024-04-08 18:53:30 +03:00
|
|
|
#include "qapi/error.h"
|
2016-10-24 11:52:35 +03:00
|
|
|
#include "monitor/monitor.h"
|
2024-04-08 18:53:30 +03:00
|
|
|
#include "../monitor/monitor-internal.h"
|
2016-10-24 11:52:35 +03:00
|
|
|
|
2024-06-17 21:57:24 +03:00
|
|
|
int monitor_fdset_dup_fd_add(int64_t fdset_id, int flags, Error **errp)
|
2016-10-24 11:52:35 +03:00
|
|
|
{
|
2020-08-27 15:27:00 +03:00
|
|
|
errno = ENOSYS;
|
2016-10-24 11:52:35 +03:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void monitor_fdset_dup_fd_remove(int dupfd)
|
|
|
|
{
|
|
|
|
}
|
2024-04-08 18:53:30 +03:00
|
|
|
|
|
|
|
void monitor_fdsets_cleanup(void)
|
|
|
|
{
|
|
|
|
}
|