diff options
author | Peter Maydell | 2016-09-29 01:34:20 +0200 |
---|---|---|
committer | Peter Maydell | 2016-09-29 01:34:20 +0200 |
commit | cc9a366d3b161d255fcf25aad30e0c8fcc766013 (patch) | |
tree | 1d11db4580c10d5cd3ab3468746030cbe07bd005 /stubs | |
parent | Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (diff) | |
parent | trace: Document the execution mode of guest events (diff) | |
download | qemu-cc9a366d3b161d255fcf25aad30e0c8fcc766013.tar.gz qemu-cc9a366d3b161d255fcf25aad30e0c8fcc766013.tar.xz qemu-cc9a366d3b161d255fcf25aad30e0c8fcc766013.zip |
Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging
# gpg: Signature made Wed 28 Sep 2016 22:30:45 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: Document the execution mode of guest events
trace: Add event "guest_cpu_reset"
trace: Add event "guest_cpu_enter"
trace: Properly initialize dynamic event states in hot-plugged vCPUs
trace: move hw/virtio/virtio-balloon.c trace points into correct file
trace: move hw/mem/pc-dimm.c trace points into correct file
trace: move util/qemu-coroutine*.c trace points into correct file
trace: move util/buffer.c trace points into correct file
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'stubs')
-rw-r--r-- | stubs/trace-control.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/stubs/trace-control.c b/stubs/trace-control.c index 2dfcd9fb2b..f765a02018 100644 --- a/stubs/trace-control.c +++ b/stubs/trace-control.c @@ -44,3 +44,9 @@ void trace_event_set_vcpu_state_dynamic(CPUState *vcpu, /* should never be called on non-target binaries */ abort(); } + +void trace_init_vcpu(CPUState *vcpu) +{ + /* should never be called on non-target binaries */ + abort(); +} |