mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 08:43:55 -06:00
Merge remote-tracking branch 'stefanha/tracing' into staging
This commit is contained in:
commit
88adbdfdf4
21 changed files with 722 additions and 493 deletions
19
vl.c
19
vl.c
|
@ -158,7 +158,7 @@ int main(int argc, char **argv)
|
|||
#include "slirp/libslirp.h"
|
||||
|
||||
#include "trace.h"
|
||||
#include "simpletrace.h"
|
||||
#include "trace/control.h"
|
||||
#include "qemu-queue.h"
|
||||
#include "cpus.h"
|
||||
#include "arch_init.h"
|
||||
|
@ -2204,7 +2204,6 @@ int main(int argc, char **argv, char **envp)
|
|||
int show_vnc_port = 0;
|
||||
#endif
|
||||
int defconfig = 1;
|
||||
const char *trace_file = NULL;
|
||||
const char *log_mask = NULL;
|
||||
const char *log_file = NULL;
|
||||
GMemVTable mem_trace = {
|
||||
|
@ -2212,6 +2211,8 @@ int main(int argc, char **argv, char **envp)
|
|||
.realloc = realloc_and_trace,
|
||||
.free = free_and_trace,
|
||||
};
|
||||
const char *trace_events = NULL;
|
||||
const char *trace_file = NULL;
|
||||
|
||||
atexit(qemu_run_exit_notifiers);
|
||||
error_set_progname(argv[0]);
|
||||
|
@ -3002,14 +3003,16 @@ int main(int argc, char **argv, char **envp)
|
|||
}
|
||||
xen_mode = XEN_ATTACH;
|
||||
break;
|
||||
#ifdef CONFIG_SIMPLE_TRACE
|
||||
case QEMU_OPTION_trace:
|
||||
{
|
||||
opts = qemu_opts_parse(qemu_find_opts("trace"), optarg, 0);
|
||||
if (opts) {
|
||||
trace_file = qemu_opt_get(opts, "file");
|
||||
if (!opts) {
|
||||
exit(1);
|
||||
}
|
||||
trace_events = qemu_opt_get(opts, "events");
|
||||
trace_file = qemu_opt_get(opts, "file");
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
case QEMU_OPTION_readconfig:
|
||||
{
|
||||
int ret = qemu_read_config_file(optarg);
|
||||
|
@ -3067,8 +3070,8 @@ int main(int argc, char **argv, char **envp)
|
|||
set_cpu_log(log_mask);
|
||||
}
|
||||
|
||||
if (!st_init(trace_file)) {
|
||||
fprintf(stderr, "warning: unable to initialize simple trace backend\n");
|
||||
if (!trace_backend_init(trace_events, trace_file)) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
/* If no data_dir is specified then try to find it relative to the
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue