The only callers of these functions have been removed. Adding any new usage of them is highly undesirable, so they should be entirely removed. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
19 lines
441 B
C
19 lines
441 B
C
#include "qemu/osdep.h"
|
|
#include "qemu/error-report.h"
|
|
#include "monitor/monitor.h"
|
|
|
|
int error_vprintf(const char *fmt, va_list ap)
|
|
{
|
|
int ret;
|
|
|
|
if (g_test_initialized() && !g_test_subprocess() &&
|
|
getenv("QTEST_SILENT_ERRORS")) {
|
|
char *msg = g_strdup_vprintf(fmt, ap);
|
|
g_test_message("%s", msg);
|
|
ret = strlen(msg);
|
|
g_free(msg);
|
|
return ret;
|
|
}
|
|
return vfprintf(stderr, fmt, ap);
|
|
}
|