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