]> git.proxmox.com Git - qemu.git/blob - scripts/tracetool/format/d.py
tracetool: Add support for the 'dtrace' backend
[qemu.git] / scripts / tracetool / format / d.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 """
5 Generate .d file (DTrace only).
6 """
7
8 __author__ = "Lluís Vilanova <vilanova@ac.upc.edu>"
9 __copyright__ = "Copyright 2012, Lluís Vilanova <vilanova@ac.upc.edu>"
10 __license__ = "GPL version 2 or (at your option) any later version"
11
12 __maintainer__ = "Stefan Hajnoczi"
13 __email__ = "stefanha@linux.vnet.ibm.com"
14
15
16 from tracetool import out
17
18
19 def begin(events):
20 out('/* This file is autogenerated by tracetool, do not edit. */')