From: Marcelo Tosatti <[EMAIL PROTECTED]> Signed-off-by: Marcelo Tosatti <[EMAIL PROTECTED]> Signed-off-by: Avi Kivity <[EMAIL PROTECTED]>
diff --git a/qemu/sysemu.h b/qemu/sysemu.h index e74d56b..e524276 100644 --- a/qemu/sysemu.h +++ b/qemu/sysemu.h @@ -57,6 +57,10 @@ int qemu_live_loadvm_state(QEMUFile *f); void main_loop_wait(int timeout); +int check_params(char *buf, int buf_size, char **params, const char *str); +int get_param_value(char *buf, int buf_size, const char *tag, + const char *str); + /* Polling handling */ /* return TRUE if no sleep should be done afterwards */ diff --git a/qemu/vl.c b/qemu/vl.c index 3c50b1c..16be2c6 100644 --- a/qemu/vl.c +++ b/qemu/vl.c @@ -4737,8 +4737,8 @@ static const char *get_opt_value(char *buf, int buf_size, const char *p) return p; } -static int get_param_value(char *buf, int buf_size, - const char *tag, const char *str) +int get_param_value(char *buf, int buf_size, + const char *tag, const char *str) { const char *p; char option[128]; @@ -4762,8 +4762,8 @@ static int get_param_value(char *buf, int buf_size, return 0; } -static int check_params(char *buf, int buf_size, - char **params, const char *str) +int check_params(char *buf, int buf_size, + char **params, const char *str) { const char *p; int i; ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2008. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ kvm-commits mailing list kvm-commits@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kvm-commits