forked from queueRAM/qemu-irix
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
These functions will be wanted by block-obj-y but the actual definition is in obj-y, so stub them to keep the linker happy. Signed-off-by: Fam Zheng <[email protected]> Acked-by: Paolo Bonzini <[email protected]> Message-Id: <[email protected]> Reviewed-by: Stefan Hajnoczi <[email protected]>
- Loading branch information
Fam Zheng
committed
Feb 8, 2018
1 parent
709f213
commit a37eaa5
Showing
2 changed files
with
17 additions
and
0 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 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,16 @@ | ||
#include "qemu/osdep.h" | ||
#include "exec/ramlist.h" | ||
#include "exec/cpu-common.h" | ||
|
||
void ram_block_notifier_add(RAMBlockNotifier *n) | ||
{ | ||
} | ||
|
||
void ram_block_notifier_remove(RAMBlockNotifier *n) | ||
{ | ||
} | ||
|
||
int qemu_ram_foreach_block(RAMBlockIterFunc func, void *opaque) | ||
{ | ||
return 0; | ||
} |