Compile tested only.
Signed-off-by: Alex Bennée <[email protected]>
Cc: Stefan Weil <[email protected]>
---
v2
- used more widely available GlobalMemoryStatusEx
- dropped Phillipe's r-b due to the change
---
util/oslib-win32.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/util/oslib-win32.c b/util/oslib-win32.c
index 31030463cc9..a74ee5a3aa7 100644
--- a/util/oslib-win32.c
+++ b/util/oslib-win32.c
@@ -831,6 +831,11 @@ char *qemu_get_host_name(Error **errp)
size_t qemu_get_host_physmem(void)
{
- /* currently unimplemented */
+ MEMORYSTATUSEX statex;
+ statex.dwLength = sizeof(statex);
+
+ if (!GlobalMemoryStatusEx(&statex)) {
+ return statex.ullTotalPhys;
+ }
return 0;
}
--
2.20.1