qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH v2 1/3] qemu: Add prototype and make qemu_uuid_parse


From: Alex Williamson
Subject: [Qemu-devel] [PATCH v2 1/3] qemu: Add prototype and make qemu_uuid_parse() non-static
Date: Wed, 08 Apr 2009 15:59:00 -0600
User-agent: StGIT/0.14.2

SMBIOS parameters can also provide a UUID outside of vl.c.

Signed-off-by: Alex Williamson <address@hidden>
---

 sysemu.h |    1 +
 vl.c     |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/sysemu.h b/sysemu.h
index 3eab34b..e94d5c3 100644
--- a/sysemu.h
+++ b/sysemu.h
@@ -15,6 +15,7 @@ extern const char *bios_dir;
 extern int vm_running;
 extern const char *qemu_name;
 extern uint8_t qemu_uuid[];
+int qemu_uuid_parse(const char *str, uint8_t *uuid);
 #define UUID_FMT 
"%02hhx%02hhx%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx-%02hhx%02hhx%02hhx%02hhx%02hhx%02hhx"
 
 typedef struct vm_change_state_entry VMChangeStateEntry;
diff --git a/vl.c b/vl.c
index ddbcc6c..6235341 100644
--- a/vl.c
+++ b/vl.c
@@ -4197,7 +4197,7 @@ static BOOL WINAPI qemu_ctrl_handler(DWORD type)
 }
 #endif
 
-static int qemu_uuid_parse(const char *str, uint8_t *uuid)
+int qemu_uuid_parse(const char *str, uint8_t *uuid)
 {
     int ret;
 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]