Statistics
| Branch: | Revision:

root / trace / control.c @ feature-archipelago

History | View | Annotate | Download (3.4 kB)

# Date Author Comment
b1bae816 03/28/2013 03:19 pm Lluís Vilanova

trace: Provide a detailed event control interface

This interface decouples event obtaining from interaction.

Events can be obtained through three different methods:

  • identifier
  • name
  • simple wildcard pattern

Signed-off-by: Lluís Vilanova <>...

ddde8acc 11/16/2012 02:12 pm Gerd Hoffmann

trace: allow disabling events in events file

Disable trace events prefixed with a '-'. Useful
to enable a group of tracepoints with exceptions,
like this:

usb_xhci_port_*
-usb_xhci_port_read

which will enable all xhci port tracepoints except reads....

794b1f96 07/19/2012 01:30 pm Alexey Kardashevskiy

trace: added ability to comment out events in the list

It is convenient for debug to be able to switch on/off some events easily.
The only possibility now is to remove event name from the file completely
and type it again when we want it back.

The patch adds '#' symbol handling as a comment specifier....

23d15e86 09/01/2011 12:34 pm Lluís

trace: add "-trace events" argument to control initial state

The "-trace events" argument can be used to provide a file with a list of trace
event names that will be enabled prior to starting execution, thus providing
early tracing.

This saves the user from manually toggling event states through the monitor...