960f29b347
I'm keeping the EACCES because callers expect to be able to look at errno. Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Fabiano Rosas <farosas@suse.de>
19 lines
318 B
C
19 lines
318 B
C
#include "qemu/osdep.h"
|
|
#include "qapi/error.h"
|
|
#include "monitor/monitor.h"
|
|
#include "../monitor/monitor-internal.h"
|
|
|
|
int monitor_fdset_dup_fd_add(int64_t fdset_id, int flags, Error **errp)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|
|
|
|
void monitor_fdset_dup_fd_remove(int dupfd)
|
|
{
|
|
}
|
|
|
|
void monitor_fdsets_cleanup(void)
|
|
{
|
|
}
|