diff options
author | Lukas Jünger | 2021-09-17 18:23:31 +0200 |
---|---|---|
committer | Alex Bennée | 2021-10-12 09:37:05 +0200 |
commit | 6a78a987c6826d44c9e70eddb63613e455f691e5 (patch) | |
tree | 90bc61e90e0e12f398acd97e43c053abb9af7ad8 /plugins | |
parent | gitlab: fix passing of TEST_TARGETS env to cirrus (diff) | |
download | qemu-6a78a987c6826d44c9e70eddb63613e455f691e5.tar.gz qemu-6a78a987c6826d44c9e70eddb63613e455f691e5.tar.xz qemu-6a78a987c6826d44c9e70eddb63613e455f691e5.zip |
plugins/: Add missing functions to symbol list
Some functions of the plugin API were missing in
the symbol list. However, they are all used by
the contributed example plugins. QEMU fails to
load the plugin if the function symbol is not
exported.
Signed-off-by: Lukas Jünger <lukas.junger@greensocs.com>
Message-Id: <20210905140939.638928-2-lukas.junger@greensocs.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210917162332.3511179-11-alex.bennee@linaro.org>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/qemu-plugins.symbols | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/qemu-plugins.symbols b/plugins/qemu-plugins.symbols index 67b309ea2a..4834756ba3 100644 --- a/plugins/qemu-plugins.symbols +++ b/plugins/qemu-plugins.symbols @@ -1,11 +1,14 @@ { qemu_plugin_bool_parse; qemu_plugin_get_hwaddr; + qemu_plugin_hwaddr_device_name; qemu_plugin_hwaddr_is_io; + qemu_plugin_hwaddr_phys_addr; qemu_plugin_insn_data; qemu_plugin_insn_disas; qemu_plugin_insn_haddr; qemu_plugin_insn_size; + qemu_plugin_insn_symbol; qemu_plugin_insn_vaddr; qemu_plugin_mem_is_big_endian; qemu_plugin_mem_is_sign_extended; |