mirror of
https://github.com/mii443/qemu.git
synced 2025-12-16 17:18:49 +00:00
Make Slirp statistics gathering and output conditional to LOG_ENABLED
Add 'info slirp' command to monitor to display statistics Disable Slirp debugging code by default git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3451 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
11
slirp/misc.c
11
slirp/misc.c
@@ -603,6 +603,16 @@ relay(s)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_QEMU
|
||||
void lprint(const char *format, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start(args, format);
|
||||
term_vprintf(format, args);
|
||||
va_end(args);
|
||||
}
|
||||
#else
|
||||
int (*lprint_print) _P((void *, const char *, va_list));
|
||||
char *lprint_ptr, *lprint_ptr2, **lprint_arg;
|
||||
|
||||
@@ -754,6 +764,7 @@ add_emu(buff)
|
||||
|
||||
lprint("Adding emulation for %s to port %d/%d\r\n", buff1, emup->lport, emup->fport);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef BAD_SPRINTF
|
||||
|
||||
|
||||
Reference in New Issue
Block a user