提交 6f121ff5 编写于 作者: J Juan Quintela

savevm: un-export qemu_file_set_error()

Signed-off-by: NJuan Quintela <quintela@redhat.com>
Reviewed-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 43be3a25
...@@ -103,7 +103,6 @@ int qemu_file_rate_limit(QEMUFile *f); ...@@ -103,7 +103,6 @@ int qemu_file_rate_limit(QEMUFile *f);
int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate); int64_t qemu_file_set_rate_limit(QEMUFile *f, int64_t new_rate);
int64_t qemu_file_get_rate_limit(QEMUFile *f); int64_t qemu_file_get_rate_limit(QEMUFile *f);
int qemu_file_get_error(QEMUFile *f); int qemu_file_get_error(QEMUFile *f);
void qemu_file_set_error(QEMUFile *f, int error);
/* Try to send any outstanding data. This function is useful when output is /* Try to send any outstanding data. This function is useful when output is
* halted due to rate limiting or EAGAIN errors occur as it can be used to * halted due to rate limiting or EAGAIN errors occur as it can be used to
......
...@@ -440,7 +440,7 @@ int qemu_file_get_error(QEMUFile *f) ...@@ -440,7 +440,7 @@ int qemu_file_get_error(QEMUFile *f)
return f->last_error; return f->last_error;
} }
void qemu_file_set_error(QEMUFile *f, int ret) static void qemu_file_set_error(QEMUFile *f, int ret)
{ {
f->last_error = ret; f->last_error = ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册