diff options
| author | Peter Maydell | 2017-07-17 19:39:31 +0200 |
|---|---|---|
| committer | Peter Maydell | 2017-07-17 19:39:32 +0200 |
| commit | 5a477a78060638b8433e9fb96a3ada100b1ab8e9 (patch) | |
| tree | 00f0c9529b4079ec195255ad97744a37f52e3c99 /scripts/tracetool/backend/simple.py | |
| parent | Merge remote-tracking branch 'remotes/kraxel/tags/usb-20170717-pull-request' ... (diff) | |
| parent | trace: update old trace events in docs (diff) | |
| download | qemu-5a477a78060638b8433e9fb96a3ada100b1ab8e9.tar.gz qemu-5a477a78060638b8433e9fb96a3ada100b1ab8e9.tar.xz qemu-5a477a78060638b8433e9fb96a3ada100b1ab8e9.zip | |
Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging
# gpg: Signature made Mon 17 Jul 2017 13:11:17 BST
# gpg: using RSA key 0x9CA4ABB381AB73C8
# gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>"
# gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>"
# Primary key fingerprint: 8695 A8BF D3F9 7CDA AC35 775A 9CA4 ABB3 81AB 73C8
* remotes/stefanha/tags/tracing-pull-request:
trace: update old trace events in docs
trace: [trivial] Statically enable all guest events
trace: [tcg, trivial] Re-align generated code
trace: [tcg] Do not generate TCG code to trace dynamically-disabled events
exec: [tcg] Use different TBs according to the vCPU's dynamic tracing state
trace: [tcg] Delay changes to dynamic state when translating
trace: Allocate cpu->trace_dstate in place
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'scripts/tracetool/backend/simple.py')
| -rw-r--r-- | scripts/tracetool/backend/simple.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/tracetool/backend/simple.py b/scripts/tracetool/backend/simple.py index 4acc06e81c..f983670ee1 100644 --- a/scripts/tracetool/backend/simple.py +++ b/scripts/tracetool/backend/simple.py @@ -6,7 +6,7 @@ Simple built-in backend. """ __author__ = "Lluís Vilanova <vilanova@ac.upc.edu>" -__copyright__ = "Copyright 2012-2014, Lluís Vilanova <vilanova@ac.upc.edu>" +__copyright__ = "Copyright 2012-2017, Lluís Vilanova <vilanova@ac.upc.edu>" __license__ = "GPL version 2 or (at your option) any later version" __maintainer__ = "Stefan Hajnoczi" @@ -37,7 +37,7 @@ def generate_h_begin(events, group): def generate_h(event, group): - out(' _simple_%(api)s(%(args)s);', + out(' _simple_%(api)s(%(args)s);', api=event.api(), args=", ".join(event.args.names())) |
