60efffa41b
Currently code has to call monitor_fdset_get_fd, then dup the return fd, and then add the duplicate FD back into the fdset. This dance is overly verbose for the caller and introduces extra failure modes which can be avoided by folding all the logic into monitor_fdset_dup_fd_add and removing monitor_fdset_get_fd entirely. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
18 lines
266 B
C
18 lines
266 B
C
#include "qemu/osdep.h"
|
|
#include "monitor/monitor.h"
|
|
|
|
int monitor_fdset_dup_fd_add(int64_t fdset_id, int flags)
|
|
{
|
|
errno = ENOSYS;
|
|
return -1;
|
|
}
|
|
|
|
int64_t monitor_fdset_dup_fd_find(int dup_fd)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
void monitor_fdset_dup_fd_remove(int dupfd)
|
|
{
|
|
}
|