diff options
author | Lluís <xscript@gmx.net> | 2011-08-31 20:31:45 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-09-01 10:34:54 +0100 |
commit | 03727e6a06087dc8f46d5674b4b29262bf7377a4 (patch) | |
tree | aeae1754304b2e1ad7f0095d77385a18eb775697 /scripts/tracetool | |
parent | dd215f646c72b4cf680097b13aeb8b0c589dceb2 (diff) | |
download | qemu-03727e6a06087dc8f46d5674b4b29262bf7377a4.tar.gz qemu-03727e6a06087dc8f46d5674b4b29262bf7377a4.tar.bz2 qemu-03727e6a06087dc8f46d5674b4b29262bf7377a4.zip |
trace: [simple] disable all trace points by default
Note that this refers to the backend-specific state (whether the output must be
generated), not the event "disabled" property (which always uses the "nop"
backend).
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Diffstat (limited to 'scripts/tracetool')
-rwxr-xr-x | scripts/tracetool | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/scripts/tracetool b/scripts/tracetool index e2cf11784b..c740080ebb 100755 --- a/scripts/tracetool +++ b/scripts/tracetool @@ -221,15 +221,10 @@ EOF linetoc_simple() { - local name state + local name name=$(get_name "$1") - if has_property "$1" "disable"; then - state="0" - else - state="1" - fi cat <<EOF -{.tp_name = "$name", .state=$state}, +{.tp_name = "$name", .state=0}, EOF simple_event_num=$((simple_event_num + 1)) } |