-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stubs: group all monitor_fdset_* functions in a single file
It makes little sense to implement only one of them, so avoid proliferation of stubs files. Signed-off-by: Paolo Bonzini <[email protected]>
- Loading branch information
Showing
6 changed files
with
23 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#include "qemu/osdep.h" | ||
#include "qemu-common.h" | ||
#include "monitor/monitor.h" | ||
|
||
int monitor_fdset_dup_fd_add(int64_t fdset_id, int dup_fd) | ||
{ | ||
return -1; | ||
} | ||
|
||
int monitor_fdset_dup_fd_find(int dup_fd) | ||
{ | ||
return -1; | ||
} | ||
|
||
int monitor_fdset_get_fd(int64_t fdset_id, int flags) | ||
{ | ||
return -1; | ||
} | ||
|
||
void monitor_fdset_dup_fd_remove(int dupfd) | ||
{ | ||
} |