qemu-option-trace.texi 1021 B

12345678910111213141516171819202122232425
  1. Specify tracing options.
  2. @table @option
  3. @item [enable=]@var{pattern}
  4. Immediately enable events matching @var{pattern}.
  5. The file must contain one event name (as listed in the @file{trace-events-all}
  6. file) per line; globbing patterns are accepted too. This option is only
  7. available if QEMU has been compiled with the @var{simple}, @var{log}
  8. or @var{ftrace} tracing backend. To specify multiple events or patterns,
  9. specify the @option{-trace} option multiple times.
  10. Use @code{-trace help} to print a list of names of trace points.
  11. @item events=@var{file}
  12. Immediately enable events listed in @var{file}.
  13. The file must contain one event name (as listed in the @file{trace-events-all}
  14. file) per line; globbing patterns are accepted too. This option is only
  15. available if QEMU has been compiled with the @var{simple}, @var{log} or
  16. @var{ftrace} tracing backend.
  17. @item file=@var{file}
  18. Log output traces to @var{file}.
  19. This option is only available if QEMU has been compiled with
  20. the @var{simple} tracing backend.
  21. @end table