diff options
author | Lluís Vilanova | 2012-04-03 20:48:12 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2012-04-18 15:03:00 +0200 |
commit | 52ef093aceddbe43dcc2cb4190e2178036dac60b (patch) | |
tree | 14249894e48fb2fe10f2ff7020ca30f850316db8 /scripts/tracetool/format/stap.py | |
parent | tracetool: Add support for the 'ust' backend (diff) | |
download | qemu-52ef093aceddbe43dcc2cb4190e2178036dac60b.tar.gz qemu-52ef093aceddbe43dcc2cb4190e2178036dac60b.tar.xz qemu-52ef093aceddbe43dcc2cb4190e2178036dac60b.zip |
tracetool: Add support for the 'dtrace' backend
Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'scripts/tracetool/format/stap.py')
-rw-r--r-- | scripts/tracetool/format/stap.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/scripts/tracetool/format/stap.py b/scripts/tracetool/format/stap.py new file mode 100644 index 0000000000..50a4c69954 --- /dev/null +++ b/scripts/tracetool/format/stap.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + +""" +Generate .stp file (DTrace with SystemTAP only). +""" + +__author__ = "Lluís Vilanova <vilanova@ac.upc.edu>" +__copyright__ = "Copyright 2012, Lluís Vilanova <vilanova@ac.upc.edu>" +__license__ = "GPL version 2 or (at your option) any later version" + +__maintainer__ = "Stefan Hajnoczi" +__email__ = "stefanha@linux.vnet.ibm.com" + + +from tracetool import out + + +def begin(events): + out('/* This file is autogenerated by tracetool, do not edit. */') |