docs/system/gdb.rst: Add some more heading structure
[qemu/ar7.git] / tests / plugin / empty.c
blob8fa6bacd93d25e0b95f7b2c6f5a4a63b42ff83dd
1 /*
2 * Copyright (C) 2018, Emilio G. Cota <cota@braap.org>
4 * License: GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7 #include <inttypes.h>
8 #include <assert.h>
9 #include <stdlib.h>
10 #include <string.h>
11 #include <unistd.h>
12 #include <stdio.h>
14 #include <qemu-plugin.h>
16 QEMU_PLUGIN_EXPORT int qemu_plugin_version = QEMU_PLUGIN_VERSION;
19 * Empty TB translation callback.
20 * This allows us to measure the overhead of injecting and then
21 * removing empty instrumentation.
23 static void vcpu_tb_trans(qemu_plugin_id_t id, struct qemu_plugin_tb *tb)
24 { }
26 QEMU_PLUGIN_EXPORT int qemu_plugin_install(qemu_plugin_id_t id,
27 const qemu_info_t *info,
28 int argc, char **argv)
30 qemu_plugin_register_vcpu_tb_trans_cb(id, vcpu_tb_trans);
31 return 0;